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!View all the Fabric Data Days sessions on demand. View schedule
Hi
I need to add a coumn to my report, based on the value of 2 other columns but only have a value where the specific values are met, anything else should be null or blank.
| Status | Owner | New Column |
| Open | John Smith | If Status = Open & Owner = John Smith then value = "In Remediation" else blank |
| Closed | John Smith | if status = Closed & Owner = John Smith then value = "Remediaiton Closed" else blank |
What I'm trying to acheive i've added to the "New Column" above, is there an easy way to acheive this?
Solved! Go to Solution.
Hi @Anonymous
Please create calculated column as below:
New column= IF('Table'[status]="Open" && 'Table'[Owner]="John Smith","In Remediation", IF(Table'[status]="Close" && 'Table'[Owner]="John Smith","Remediaiton Closed",Blank()))
Let me know your answer!
Click on transform. Select table:
Click add column tab. Click Custom column
Don't forget to give thumbs up and accept this as a solution if it helped you!!!
Hi @Anonymous
Please create calculated column as below:
New column= IF('Table'[status]="Open" && 'Table'[Owner]="John Smith","In Remediation", IF(Table'[status]="Close" && 'Table'[Owner]="John Smith","Remediaiton Closed",Blank()))
Let me know your answer!
Thank you! this worked perfectly
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!