Forum Discussion
Kristofferaabo
8 years agoHelper IV
Nested 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
8 years agoResolver I
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.
- Kristofferaabo8 years agoHelper IV
great stuff, didn't know the " || " ..THANKS