Forum Discussion
gsamaral77
Helper I
4 years agoRemove only text value in a column with text and numbers values
Hello guys, I'm new in the PowerQuery world, so I need a little help.
In my dataset I have a column with mixed types of variables, I need to remove the rows with null, empty and string values, keeping only the rows with numbers values, using PowerQuery. Someone can help me, please?
Issue this statement where Source should be replaced by your previous step
= Table.SelectRows(Source, each Value.Is([Column], type number))
2 Replies
- Vijay_A_Verma
Most Valuable Professional
Issue this statement where Source should be replaced by your previous step
= Table.SelectRows(Source, each Value.Is([Column], type number))- gsamaral77
Helper I
It's work!! Thank you very much!!