Forum Discussion
qmest
4 years agoFrequent Visitor
Retrieving numbers from column with text and numbers
Hi, I have a column in a table that mixes several types of values. Numbers, text, symbols and null values. How can i build a separate column that has only the numeric values and ignores all the o...
BA_Pete
4 years agoSuper User
Hi qmest ,
Try using this in a new custom column:
Table.AddColumn(
previousStep,
"newColumnName",
each Text.Combine(
List.RemoveNulls(
List.Transform(
Text.ToList([ANSWER_VALUE]),
each if Value.Is(Value.FromText(_), type number) then _ else null
)
)
)
)
Pete
- qmest4 years agoFrequent Visitor
Perfect. Thank you!