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, ke...
- 4 years ago
Issue this statement where Source should be replaced by your previous step
= Table.SelectRows(Source, each Value.Is([Column], type number))
Vijay_A_Verma
Most Valuable Professional
4 years agoIssue this statement where Source should be replaced by your previous step
= Table.SelectRows(Source, each Value.Is([Column], type number))
- gsamaral774 years ago
Helper I
It's work!! Thank you very much!!