How to remove text to only leave numbers
gwson
✭✭✭✭✭
I have a column with numbers and letters i.e 1.1a, 1.1b, 2.1a and so on and using a simple formula to remove the letter and leave number =LEFT([SubComp#]@row, (LEN([SubComp#]@row) - 1)) which works just fine, but for some reason the Conditional Formatting does not recognize the calculated output as a number to highlight row ranges.
Is there a different formuala perhaps I can strip the letters to only leave only the number?
Best Answer
-
Try wrapping it in a VALUE()
=VALUE(LEFT([SubComp#]@row, (LEN([SubComp#]@row) - 1)))
Answers
-
Try wrapping it in a VALUE()
=VALUE(LEFT([SubComp#]@row, (LEN([SubComp#]@row) - 1)))
-
That did it!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!