Forum Discussion

Kristofferaabo's avatar
8 years ago
Solved

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, ...
  • BalaVenuGopal's avatar
    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.