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
Hi, I'm working on a column in powerBI that needs to group my 'Status'. The groups should either be open or closed.
I have following stutus' in my "Status" column: Award, Loss, meeting scheduled, rejected offer, rebid
Following should return "closed": Award, Loss, rejected offer
Following should return "open": meeting scheduled, rebid
Does anybody know how I can make this as a formula to a column, would think its a nsted IF in some way?
Thanks
Solved! Go to Solution.
Hi @Kristofferaabo ,
once your data is loaded then you create New column as bellow :
Status = IF(table[Status] = "Award" || table[Status] = "Loss" || table[Status] = "rejected offer","Closed","Open")
Please mark as solution if this resove your issue.
Hi @Kristofferaabo ,
once your data is loaded then you create New column as bellow :
Status = IF(table[Status] = "Award" || table[Status] = "Loss" || table[Status] = "rejected offer","Closed","Open")
Please mark as solution if this resove your issue.
great stuff, didn't know the " || " ..THANKS
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!