Reputation: 2918
I have 20+ tables and also there are a lot more columns so it's is not possible to filter out null values one by one for each column, Is there any alternative to remove null values from whole data in one go.
Upvotes: 3
Views: 13130
Reputation: 1
or an easy easy way is using the Transforamation you can see the columns and untick the nulls too
that is also easy but you need to do it 20 times might be painfull but that wil make you familiar with the data in the columns
Upvotes: 0
Reputation: 2918
filter all null values for multiple columns at one time with the M Query below
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each List.Contains(Record.ToList(_),null)=false)
This will help.
Upvotes: 8