The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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
User | Count |
---|---|
77 | |
75 | |
36 | |
31 | |
28 |
User | Count |
---|---|
105 | |
97 | |
55 | |
48 | |
48 |