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
Hi Guys 🙂
I have the below data set . I need a column "Flag" to be created at backend using DAX . Help me to achieve it
ID | Stage | Status | Status Time | Flag |
1 | Screening | Pending | 01-01-2018 | 0 |
1 | Screening | Selected | 02-01-2018 | 1 |
1 | CET | Selected | 03-01-2018 | 1 |
1 | PLA | Pending | 04-01-2018 | 0 |
1 | PLA | Rejected | 05-01-2018 | 1 |
1 | Offer | Pending | 06-01-2018 | 0 |
1 | Offer | Accepted | 07-01-2018 | 1 |
1 | Joined | Joining | 08-01-2018 | 1 |
2 | Screening | Selected | 09-01-2018 | 1 |
2 | CET | Selected | 10-01-2018 | 1 |
2 | PLA | Selected | 11-01-2018 | 1 |
2 | Offer | Accepted | 12-01-2018 | 1 |
2 | Joined | Joining | 13-01-2018 | 1 |
For each ID and each Stage wise , i need to fetch MAX ( Status Time ) as Flag 1 .
Advance Thanks 🙂
Solved! Go to Solution.
Hi @KiranPatil,
flag = IF ( table4[Status Time ] = CALCULATE ( MAX ( table4[Status Time ] ), ALLEXCEPT ( table4, table4[ID], table4[Stage] ) ), 1, 0 )
Best regards,
Yuliana Gu
Hi @KiranPatil,
flag = IF ( table4[Status Time ] = CALCULATE ( MAX ( table4[Status Time ] ), ALLEXCEPT ( table4, table4[ID], table4[Stage] ) ), 1, 0 )
Best regards,
Yuliana Gu
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |