Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Power Query - Identify Number Columns with Zero Values

Hi,   I'm trying to identify rows over values that have zero values so I can filter out these rows. To do this, I need to identify my number columns and search only those. There will be text column...
  • parry2k's avatar
    3 years ago

    Anonymous try this:

     

    Table.AddColumn(#"Prev Step", "Custom", each List.MatchesAll(Record.ToList(Record.SelectFields(_,Table.ColumnsOfType(#"Prev Step", {type nullable number}))),each _=0))