The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
I have the table:
Col1 | Col2 | Col3 |
A | 1 | 01/01/2000 |
A | 2 | 02/01/2000 |
A | 1 | 03/01/2000 |
A | 2 | 04/01/2000 |
A | 1 | 05/01/2000 |
A | 1 | 06/01/2000 |
A | 1 | 07/01/2000 |
etc
After grouping by Col1 (which can be A, B, etc), I want to find the earliest date where Col2=1 after the latest date where Col2=2 for that group A (or B, C etc).
Any idea?
Thanks!
Solved! Go to Solution.
Are you expecting this kind of result?
You can use the measures below:
Earliest Date =
CALCULATE ( MIN ( Data[Col3] ), Data[Col2] = 1, ALLEXCEPT ( Data, Data[Col1] ) )
Latest Date =
CALCULATE ( MAX ( Data[Col3] ), Data[Col2] = 2, ALLEXCEPT ( Data, Data[Col1] ) )
Are you expecting this kind of result?
You can use the measures below:
Earliest Date =
CALCULATE ( MIN ( Data[Col3] ), Data[Col2] = 1, ALLEXCEPT ( Data, Data[Col1] ) )
Latest Date =
CALCULATE ( MAX ( Data[Col3] ), Data[Col2] = 2, ALLEXCEPT ( Data, Data[Col1] ) )
Hi @Anonymous ,
Can you please elaborate this?
Col2=1 after the latest date where Col2=2
User | Count |
---|---|
77 | |
76 | |
36 | |
31 | |
29 |
User | Count |
---|---|
93 | |
79 | |
57 | |
48 | |
48 |