Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
This is an example of a data set I have which I need to change the Status of "Outstanding" to "Partially Complete" if there is a date in the Start Date column. I've highlighted the rows that this would apply to.
Solved! Go to Solution.
@joannerw , A new column in DAX
= If([Status] ="Outstanding" && not(isblank([Start Date])) , "Partially Complete", [Status])
Hi @joannerw
If you are seeking a power query solution, then
= Table.AddColumn(#"Changed Type", "Custom", each if [Finsih Date] = null and [Status] = "Outstanding" then "Partially Complete" else [Status])
Thank you @tamerj1 . I had trouble getting this to work for me as I'm fairly new to Power BI and wasn't sure how to apply it bit I found amitchandak's solution worked for me. Thank you for taking the time to assist.
I also prefer dax. It's easier 😅 you can download the sample file, open the query editor and the see the steps.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 71 | |
| 50 | |
| 46 |