Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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