DEV Community

Nilotpal Choudhury
Nilotpal Choudhury

Posted on

Answer: Remove null values from whole data in Power BI

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.

Top comments (0)