This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi Experts
Need and if statement to do the following based on the flag column.... (see sample date)
if we have 1 in the flag column then in the new status column insert the text from Amended Status column otherwise Current Status value in New status column.
| ID | Current Status | Amended Status | Flag | New Status |
| 1 | New Business | |||
| 2 | New Business | Renewal | 1 | |
| 3 | Renewal | |||
| 4 | New Business | Renewal | 1 | |
| 5 | Renewal | |||
| 6 | New Business | Renewal | 1 | |
| 7 | Renewal | |||
| 8 | New Business | |||
| 9 | Renewal | New Business | 1 | |
| 10 | Renewal | New Business | 1 |
Solved! Go to Solution.
@Anonymous
Column = IF('Table'[Flag]=1,'Table'[Amended Status],'Table'[Current Status])
Measure = IF(max('Table'[Flag])=1,max('Table'[Amended Status]),max('Table'[Current Status]))
@Anonymous
Column = IF('Table'[Flag]=1,'Table'[Amended Status],'Table'[Current Status])
Measure = IF(max('Table'[Flag])=1,max('Table'[Amended Status]),max('Table'[Current Status]))
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 45 | |
| 26 | |
| 24 |