Forum Discussion

Arul's avatar
Arul
Icon for Super User rankSuper User
5 years ago
Solved

New Column Derivation

Hi all, I have table like below, wherein I need to create new column based on the value in Final RM Level. I need to get the value from respective column and need to put into new column.   T...
  • amitchandak's avatar
    amitchandak
    5 years ago

    Arul , a new column like

     

    new column =
    Switch ( [Final RM Level],
    "RM1",[RM1],
    "RM2",[RM2],
    "RM3",[RM3],
    "RM4",[RM4],
    "RM5",[RM5]
    )