Forum Discussion
Kristofferaabo
Helper IV
8 years agoNested IF formula or similar
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, ...
- 8 years ago
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.
BalaVenuGopal
Resolver I
8 years agoHi 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.
- Kristofferaabo8 years ago
Helper IV
great stuff, didn't know the " || " ..THANKS