Forum Discussion

sccoleman1189's avatar
7 years ago
Solved

Change value based on value in other column

New to the Power BI world..   I am looking to create a new column that takes the value from another column if the column has a specific value.   Example:   If the home_station column has the na...
  • Diegoctn's avatar
    7 years ago
    Column = if(PBI_Report[HOME_STATION]="XYZ",PBI_Report[WORK_STATION],PBI_Report[HOME_STATION])
     
    Just change the PBI_Report with your report's name.