FP

FormulaPilot

Spreadsheet formula tools

Open generator
Text Manipulation

Text Manipulation formulas

Extract, combine, clean, and reformat text values from any cell or column.

Frequently asked questions

Can CONCAT handle an entire column range?

Yes — CONCAT(A2:A20) joins all non-empty values with no delimiter. Use TEXTJOIN when you need a delimiter between each value.

How do I convert text to ALL CAPS instead?

Use UPPER(A2) to convert to all uppercase, or LOWER(A2) for all lowercase.

How do I count only letters, not spaces?

Use LEN(SUBSTITUTE(A2," ","")) to strip spaces before counting. For a true letter-only count, you would need a more complex approach with SUMPRODUCT.

How do I use MID when the start position varies?

Combine MID with FIND to locate a delimiter dynamically — for example, =MID(A2, FIND("-",A2)+1, 3) extracts 3 characters starting right after the first hyphen.