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.
Dear all,
I try to explain my self better I can.
I have HR list, I know which people are based in which country and are taking care of cases in particular markets.
I have a table with the amounts of cases logget in markets.
With a calculated measure, I have the number of cases per market and how many people are working on the cases in those markets.
My issue is whan I have a person that works in more than one markets, i need to sum the ratio cases/headcounts for eache markets where he works. how to do it?
Thanks
Solved! Go to Solution.
Hi,
I am not sure how your data model looks like, but please try something like below.
expected result measure: =
SUMX (
DISTINCT ( 'TableName'[Market] ),
DIVIDE ( [Cases measure], [HeadCount measure] )
)
Hi,
I am not sure how your data model looks like, but please try something like below.
expected result measure: =
SUMX (
DISTINCT ( 'TableName'[Market] ),
DIVIDE ( [Cases measure], [HeadCount measure] )
)
Thank you so much!
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |