Forum Discussion
Anonymous
5 years agoNot applicable
Grouping columns with conditional agregated function
Hi, I have this kind of data and I want to create a grouped table by G1,G2,G3 counting the rows of C column that are distinct from null with power query G1 G2 G3 K C 1 1 1 1 null ...
- Anonymous5 years ago
Hi Anonymous
You can directly groupby
Table.Group(yourPreviousStep, {"G1", "G2", "G3"}, {{"Count", each List.NonNullCount(_[C]), Int64.Type}})
Anonymous
5 years agoNot applicable
Thank you Anonymous