Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I tried something like this
Solved! Go to Solution.
Hi @user35131
Try this...
Sumamry Table =
GROUPBY(
Table,
Table,Table[race],
Table[Borough],
"ItemCount",
COUNTX(
CURRENTGROUP(),
[whatever you're counting]
)
)
This will group by and then count something (not sure of field name). If you want to SUM() then change COUNTX() to SUMX() and substitute the appropriate field after CURRENTGROUP().
Hope this helps!
Hi @user35131
Try this...
Sumamry Table =
GROUPBY(
Table,
Table,Table[race],
Table[Borough],
"ItemCount",
COUNTX(
CURRENTGROUP(),
[whatever you're counting]
)
)
This will group by and then count something (not sure of field name). If you want to SUM() then change COUNTX() to SUMX() and substitute the appropriate field after CURRENTGROUP().
Hope this helps!
Note: this will produce a summary table. What @amitchandak suggested will produce a numeric value
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.