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.
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 July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |