Forum Discussion
Anonymous
9 years agoNot applicable
Dax Statement Help - Multiple IF Statements
In my dataset, I have a column with multiple text values. I am looking for assistance with a DAX statement that will allow me to change the values (in a new column) to something more description. F...
- 9 years ago
Anonymous
New Column =
Switch (Position[Formal]),
"B", "Blue",
"R", "Red",
"Y", "Yellow",
"Other")
vanessafvg
9 years agoCommunity Champion
Anonymous
whats your field name?
vanessafvg
9 years agoCommunity Champion
Anonymous
New Column =
Switch (Position[Formal]),
"B", "Blue",
"R", "Red",
"Y", "Yellow",
"Other")