Hi,
I have a column that has below variants. Note these are just some. The logic I would like is that i want to extract letters only from cells that have letters and numbers and also leave/parse cells with numbers only as they are onto a new column. How would i do that?
BB7
BB8
BB9
BB94
BD1
BD10
BD11
38729
3873
3874
38820
38822
38828
38829
38835
38836
Thank you
Solved! Go to Solution.
Hey @chiragpatel_1, is this what you're looking for?
IF REGEX_Match([Input], '\d+') THEN [Input]
ELSE REGEX_Replace([Input], '\d', '')
ENDIF
Hi
Can you amend the formula so that it only picks out letters before the first numerical character? numbers only cells are to be parsed as they are, that part remains the same.
may thanks