Forum Discussion
Anonymous
6 years agoNot applicable
Extracting a number from Text
Hi everyone :), I have a column with texts such as " XXXX P10000 FFFFF" , "ABCD R150000" would you please help me to find a formula to extract the 10000 and 150000 after the P and R. They are always e...
mahoneypat
Microsoft Employee
6 years agoI agree that this is much easier to do in the Query Editor. A robust way to extra numbers (or any desired characters) from a text string is to use Text.Select(). For example, you can add a column with a formula like this:
=Text.Select([ColumnWithText], {"0".. "9"})
The curly brackets create a list of the numbers from 0 to 9. Only those characters will be extracted. You can add other lists of desired characters too. Note that if you have two separate number strings within the text, this formula would put them together (may be good or bad for what you are trying to do).
If this works for you, please mark it as the solution.
Regards,
Pat