Forum Discussion
Extract numbers from text
- Anonymous9 years ago
In DAX you can use ISNUMBER.OK I should have tested that first. You were actually on the right track anyway. ISERROR(VALUE(TableName[ColumnName])) will return true if the value isn't a number, false if it is a number.
In Power Query it's a two-step formula but you can nest them: Value.Is(Value.FromText([ColumnName]), Int64.Type) will return true if the row contains a number value, false if not.
Hi sethsanu,
Adding to other’s post, to output the column to the your desired format, just create a new calculated column using this formula: Column 2 = IF(ISERROR(VALUE(Table1[Column1])),"null",Table1[Column1]), for more details, please check the following screenshot
Thanks,
Lydia Zhang
Anonymous that would come out to be a text column wouldn't it? I think sethsanu meant he wanted a null result for text rows, rather than the actual text "null" but I could be mistaken.
- sethsanu9 years agoFrequent Visitor
Correct - I need to do the exclusion prior to importing at the M level. Thanks KHoreman - the M query test works fine! (marked as solution)