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
column = switch(fieldname,
"b", "Blue",
"r", "red")
etc
Anonymous
9 years agoNot applicable
- vanessafvg9 years agoCommunity Champion
Anonymous
whats your field name?
- vanessafvg9 years agoCommunity Champion
Anonymous
New Column =
Switch (Position[Formal]),
"B", "Blue",
"R", "Red",
"Y", "Yellow",
"Other")
- Anonymous9 years agoNot applicable
Position (Formal)
Will this be a new column, or change the existing?