To remove numbers from a string, for a single cell
=CONCAT(TEXTSPLIT(A2, SEQUENCE(10,,0)))
Using REGEX
=REGEXREPLACE(A2, "[0-9]", "")
To remove numbers from entire range
=BYROW(A2:A10, LAMBDA(a, CONCAT(TEXTSPLIT(a, SEQUENCE(10,,0)))))
using REGEX
=REGEXREPLACE(A2:A10, "[0-9]", "")
The Excel file for this tip can be downloaded from Tips & Tricks 201 – Remove Numbers from a String
ea57cm
mcukqg
y01ay0
Hello! I could have sworn Iβve been to this blog before but after browsing through some of the post I realized itβs new to me. Anyways, Iβm definitely happy I found it and Iβll be book-marking and checking back frequently!
7yau6o
6oci6k