I have a text column with entries that include text and numbers. I’m looking for a formula that will isolate the numbers and remove the text. Is this possible?
Hi @Tyler_Sanders - Welcome!
You can use Regexreplace to do this in this case -
RegexReplace(ColumnName, “\D” ,"" )
( I use https://regex101.com/ to test our regular expression cause I am not very proficient in them)