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
Name | WorkOrder | WorkStation | Check in Time | Check out time | unique declaration |
Alpha | A | K10 | 02/01/2021 14:00 | 02/01/2021 15:30 | 1 |
Alpha | A | K20 | 04/01/2021 13:30 | 04/01/2021 14;51 | 1 |
Beta | B | K10 | 02/01/2021 21:00 | 02/01/2021 21:31 | |
Beta | B | K10 | 03/01/2021 22:00 | 03/01/2021 22:30 | 1 |
Beta | C | K20 | 04/01/2021 12:00 | 04/01/2021 13:30 | 1 |
So basically i want to count the number of times people check out by unique workstation and unique workorder but I don't know how to approach this issue. Anyone can help me generate the "unique declaration" column? Thanks a lot!
Solved! Go to Solution.
Hi @Stan_Lego ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a measure as below to get the unique declaration
unique declaration =
VAR _maxdate =
CALCULATE (
MAX ( 'Table'[Check out time] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[WorkOrder] = SELECTEDVALUE ( 'Table'[WorkOrder] )
&& 'Table'[WorkStation] = SELECTEDVALUE ( 'Table'[WorkStation] )
)
)
VAR _tab =
SUMMARIZE (
'Table',
'Table'[WorkOrder],
'Table'[WorkStation],
"@countofws", CALCULATE ( DISTINCTCOUNT ( 'Table'[WorkStation] ) )
)
RETURN
IF (
SELECTEDVALUE ( 'Table'[Check out time] ) = _maxdate,
SUMX ( _tab, [@countofws] ),
BLANK ()
)
Best Regards
Hi @Stan_Lego ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a measure as below to get the unique declaration
unique declaration =
VAR _maxdate =
CALCULATE (
MAX ( 'Table'[Check out time] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[WorkOrder] = SELECTEDVALUE ( 'Table'[WorkOrder] )
&& 'Table'[WorkStation] = SELECTEDVALUE ( 'Table'[WorkStation] )
)
)
VAR _tab =
SUMMARIZE (
'Table',
'Table'[WorkOrder],
'Table'[WorkStation],
"@countofws", CALCULATE ( DISTINCTCOUNT ( 'Table'[WorkStation] ) )
)
RETURN
IF (
SELECTEDVALUE ( 'Table'[Check out time] ) = _maxdate,
SUMX ( _tab, [@countofws] ),
BLANK ()
)
Best Regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
93 | |
91 | |
90 | |
80 | |
49 |
User | Count |
---|---|
160 | |
145 | |
103 | |
72 | |
55 |