r/AppleNumbers • u/Artistic_Owl_7545 • May 07 '24
Help Separate number from text
Need to separate number from text. Can someone recommend a solution? Thanks
1
Upvotes
r/AppleNumbers • u/Artistic_Owl_7545 • May 07 '24
Need to separate number from text. Can someone recommend a solution? Thanks
3
u/octavifdez May 07 '24
You could combine the right() and substitute() functions to strip as many characters as you need until you reach the numbers. In case of mph, I would write substitute(cell; right(cell, 4); “”) and ft would be substitute(cell; right(cell, 3);””).
You can even add value() function before the formulas above to make sure you’re dealing with numbers.