Forum Discussion
carlochecchia
9 years agoAdvocate I
Calculation on PowerBI
Hi All,
I was wondering if anyone could help me with a simple Calculation on my Dashboard. I have the following table:
I was trying to create a calculated measure that would SUM, the DISTINCTCOUNT of WORKERS, per day..
Something like this:
I am looking for a DAX formula that would give me a total of 7.
Thanks in advance
Carlo
Hi, try with this:
CountPeople = SUMX ( SUMMARIZE ( Table2, Table2[Date], "DC"; DISTINCTCOUNT ( Table2[Name] ) ), [DC] )Regards
Victor
Lima - Peru
2 Replies
- VvelardeCommunity Champion
Hi, try with this:
CountPeople = SUMX ( SUMMARIZE ( Table2, Table2[Date], "DC"; DISTINCTCOUNT ( Table2[Name] ) ), [DC] )Regards
Victor
Lima - Peru
- carlochecchiaAdvocate I