March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I am newish to Power Bi i am trying to find out how many operators have entered data each day.
i have removed alot of the noisey information but from the below i would like the column "Operator" to have the value 3 next to 03/01/2024 and only have one row for this and this logic flowing down.
I thought changing the "summarization" to "count(distinct" would complete this but it made no change.
i have also tried a "distinctcount" within the "sumarize" portion of the formular and this has not worked.
If someone can provide me with some advice as to how to complete this that would be great.
Solved! Go to Solution.
@rwalsh200493 Try:
Table =
SUMMARIZE(
'Table',
'Table'[Date.1].[Date],
"Operator",
COUNTROWS(DISTINCT('Table'[Operator]))
)
@rwalsh200493 Try:
Table =
SUMMARIZE(
'Table',
'Table'[Date.1].[Date],
"Operator",
COUNTROWS(DISTINCT('Table'[Operator]))
)
This solution was ideal thanks as i needed to complete this through DAX and not the power Query editor as i used DAX to create the table. I should have put that in the intial brief
Open your Power Query editor and select your date column > Group by
make sure you're grouping on your date then select "Count Distinct Rows" under operation
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
7 | |
5 |
User | Count |
---|---|
28 | |
21 | |
20 | |
13 | |
10 |