Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Create new column based on other columns

Hello All,

 

I have data as below and neww to create a new column as below.

If the activity is OT need to add the year end and forecast if it is SU need the value from Forecast column.Thanks for help

ActivityYear EndForecastNew coulmn
OT12113
OT12113
OT044
OT044
OT055
OT066
OT077
SU899
SU101111
SU121313
  • Anonymous's avatar
    Anonymous
    6 years ago

    Anonymous 

    Column = IF(Test[Activity]="SU",Test[Forecast],Test[Year End]+Test[Forecast])

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Anonymous 

    Column = IF(Test[Activity]="SU",Test[Forecast],Test[Year End]+Test[Forecast])
    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks