Forum Discussion
CharnanK
2 years agoHelper I
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...
amitchandak
2 years agoSuper User
CharnanK , Try a new column like
Business Unit =
IF(
'Table'[LV Sector] = "North Coast Sector" || 'Table'[LV Sector] = "Southern Sector",
"Regional Operations",
BLANK()
)
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.