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.
Problem: I wanted to find out how many unique employees worked each day. However, the total for distinctcount will only be unique employees for the entire period and not each day.
Solution:
VAR SummarizeTry = Summarize(LaborTable,LaborTable[EmpNo],LaborTable[DateWorked],"Count1",Distinctcount(EmpNo))
Return SUMX(SummarizeTry,[Count1])
As I understand it, Summarize is taking my data and creating a new table. In this table, Power BI is doing the same thing as if I went into the powery query and clicked transform --> group by Emp No and Date Worked. Finally, it creates a measure called Count1 which is a distinct count of the newly grouped table to count the unique entries for each employee for each day.
The SUMX will go line by line and add up the employee count for each day. Is my understanding correct?
Solved! Go to Solution.
Hi @dyee4613
That's pretty much how it works, yeah, but do note that all values in the Count1 column will be 1, since you are counting over one employee and one day. I'm not sure that's what you are after. You can see the the table produced by summarize directly by creating a new calculated table with the code:
NewTable = SUMMARIZE ( LaborTable, LaborTable[EmpNo], LaborTable[DateWorked], "Count1", DISTINCTCOUNT ( LaborTable[EmpNo] ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Hi @dyee4613
That's pretty much how it works, yeah, but do note that all values in the Count1 column will be 1, since you are counting over one employee and one day. I'm not sure that's what you are after. You can see the the table produced by summarize directly by creating a new calculated table with the code:
NewTable = SUMMARIZE ( LaborTable, LaborTable[EmpNo], LaborTable[DateWorked], "Count1", DISTINCTCOUNT ( LaborTable[EmpNo] ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |