The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
13 | |
10 | |
10 | |
9 |