Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
I'm trying to calculate the First time the Event Expired based on the earliest Index.
|-Event-| | |-Index-| | |-Status-| | |-First Occurrence Expired-| |
Event1 | 1 | Valid | |
Event1 | 2 | Valid | |
Event1 | 3 | Expired | First |
Event1 | 4 | Expired | |
Event1 | 5 | Expired | |
Event1 | 6 | Expired | |
Event1 | 7 | Expired | |
Event2 | 1 | Expired | First |
Event2 | 2 | Expired | |
Event3 | 1 | Valid | |
Event3 | 2 | Expired | First |
Event3 | 3 | Expired | |
Event3 | 4 | Expired |
I'm almost there but I don't know where to take it from here:
First Occurrence Expired = CALCULATE(MAX(datasource[Index]),
FILTER(datasource,datasource[Event] = EARLIEST(datasource[Event]) &&
'datasource'[Index] = EARLIEST('datasource'[Index]) &&
datasource[Status] = "Expired"))
This gives me the correct index.
Solved! Go to Solution.
Hi @WorkHard ,
if I understood you right then this can be the solution:
First Occurance Expired =
VAR _MinIndex = CALCULATE(MIN('Table'[Index]), FILTER(ALLEXCEPT('Table','Table'[Event]),'Table'[Status] = "Expired"))
RETURN
IF(MIN('Table'[Index]) = _MinIndex , "First" , "")
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
Hi @WorkHard ,
if I understood you right then this can be the solution:
First Occurance Expired =
VAR _MinIndex = CALCULATE(MIN('Table'[Index]), FILTER(ALLEXCEPT('Table','Table'[Event]),'Table'[Status] = "Expired"))
RETURN
IF(MIN('Table'[Index]) = _MinIndex , "First" , "")
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
super confused.
The RETURN of
MIN('Table'[Index])
(last line in your code) is always returning 1 for me.
Fixed it by removing MIN from the calculation. It's possible that you were creating a measure and I am using a calculating column.
First Occurance Expired =
VAR _MinIndex = CALCULATE(MIN('Table'[Index]), FILTER(ALLEXCEPT('Table','Table'[Event]),'Table'[Status] = "Expired"))
RETURN
IF('Table'[Index] = _MinIndex , "First" , "")
User | Count |
---|---|
92 | |
88 | |
88 | |
79 | |
49 |
User | Count |
---|---|
156 | |
145 | |
105 | |
72 | |
55 |