Forum Discussion

CharnanK's avatar
CharnanK
Helper I
2 years ago
Solved

New Column

I need to create a column in a table, based on another column data.   New Column: Business Unit If LV Sector = North Coast Sector &/or Southern Sector - I want the new column to Show Regional opera...
  • Uzi2019's avatar
    2 years ago

    Hi CharnanK 

     

    Please create the following column
    BU =IF(
              OR(
                     'Table'[LV Sector] = "North Coast Sector" , 'Table'[LV Sector] = "Southern Sector"),
              "Regional Operations",
               "-"
             )

     

    If my post helps please give kudos and accept it as a solution!
    Thanks