Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
1250 | 09/05/2021 2:00AM | SOS |
1250 | 09/05/2021 2:45AM | SOS Cancel |
15808 | 09/01/2021 12:45PM | Check in |
15808 | 09/01/2021 5:55PM | Check out |
status time =
GENERATE('User Data',
VAR _curUserID = 'User Data'[assetUUID]
VAR _startperiod = 'User Data'[timeHappenedUTC]
VAR _curRankedIndex = 'User Data'[RankedIndex]
VAR _nextRankedIndex = IF(COUNTROWS(FILTER(ALL('User Data'), 'User Data'[RankedIndex] > _curRankedIndex)) > 0, _curRankedIndex + 1, _curRankedIndex)
VAR _endperiod = CALCULATE(MAX('User Data'[timeHappenedUTC]), FILTER(ALL('User Data'), 'User Data'[RankedIndex] = _nextRankedIndex && 'User Data'[assetUUID] = _curUserID))
RETURN
GENERATESERIES(_startperiod, _endperiod, TIME(0,1,0)))
and I have tried
Event =
VAR CurID = 'User Data'[assetUUID]
VAR CurTitle = 'User Data'[Title]
VAR CurDate = 'User Data'[timeHappenedUTC]
VAR MaxDate =
MAXX (
FILTER (
'User Data',
'User Data'[assetUUID]= CurID
&& 'User Data'[timeHappenedUTC] < CurDate
&& 'User Data'[Title] = "SOS Canceled"
),
'User Data'[timeHappenedUTC]
)
VAR MinDate =
IF (
MaxDate = BLANK (),
MINX ( FILTER ( 'User Data', 'User Data'[assetUUID] = CurID ), 'User Data'[timeHappenedUTC] ),
MINX (
FILTER ( 'User Data', 'User Data'[assetUUID] = CurID && 'User Data'[timeHappenedUTC] > MaxDate ),
'User Data'[timeHappenedUTC]
)
)
RETURN
IF ( CurBenched = "Not Benched", BLANK (), DATEDIFF (
but I keep receiving errors that I just can't seem to get myself out of any advice would be fantastic
I'll be quick and to the point. If you don't get answers for a long time, this most likely means nobody understands what you really want.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 20 | |
| 12 | |
| 12 |