Forum Discussion
Arul
Super User
5 years agoNew 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...
- 5 years ago
Arul , a new column like
new column =
Switch ( [Final RM Level],
"RM1",[RM1],
"RM2",[RM2],
"RM3",[RM3],
"RM4",[RM4],
"RM5",[RM5]
)
Arul
Super User
5 years agoIn the above table I have RM1,RM2...etc., columns, what I need is I need to get the value from particular column based on the value which is mentioned in Final RM Level.
I hope you got my problem.
Thanks,
-Arul
amitchandak
Super User
5 years agoArul , a new column like
new column =
Switch ( [Final RM Level],
"RM1",[RM1],
"RM2",[RM2],
"RM3",[RM3],
"RM4",[RM4],
"RM5",[RM5]
)
- Arul5 years ago
Super User