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 moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
87 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
60 | |
57 |