Forum Discussion
Anonymous
3 years agoNot applicable
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...
- 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))
Anonymous
3 years agoNot applicable
parry2k tremendous, that's exactly what I needed. Thanks for your help!