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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I want to group by an accountId field then I want to filter based on a specific column, I tried to do this:
COUNTROWS(Filter( GROUPBY(entries, entries[accountId]), [my filter column] <> "some value") )
However, it's telling me that my filter column can't be found. Isn't this the right way to group by, then filter? Thanks
Solved! Go to Solution.
The GROUPBY is similar to the SUMMARIZE, the problem is you must include the filter column in the table expression, otherwise you cannot find in the grouped table, should be like:
The GROUPBY is similar to the SUMMARIZE, the problem is you must include the filter column in the table expression, otherwise you cannot find in the grouped table, should be like: