Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I want to group an imported SQL-table in the PowerQueryEditor but exclude all rows which have are not "null" in a certain column.
CODE:
let
Source = Sql.Database("SQL-xxx", "xxxx"),
dbo_personnel = Source{[Schema="dbo",Item="personnel"]}[Data],
#"Grouped Rows" = Table.Group(dbo_personnel, {"Co_id"}, {{"Count", each Table.RowCount(_), type number}})
in
#"Grouped Rows"
Appreciate any help! Thanks
Solved! Go to Solution.
How about filtering out the null column before you do the groupby?
How about filtering out the null column before you do the groupby?
Thanks but,
I did not find an option for filtering in the PowerQueryEditor (my workaround was to create a view on the SQL-server). And filtering in the PowerPI Desktop is not an option as the grouping does not allow me to get distinct values in the relevant column.
(I want to count all personnel which do not have an exit-date) - all active personnel.
Found it