Forum Discussion
Junato47
3 years agoHelper I
Dax Formula
How to use the Dax formula or any other method to create a new column to identify risks that meet its appetite. The condition for us to understand whether the risk is meeting its appetite is, 1. If t...
- Anonymous3 years ago
Hello you can try :
Measure =
switch(
selectedvalue(table[risk appetite]),
"Averse",[very low calc],
"Minimal",[low calc],
"Conservative",[Medium calc],
"Flexible",[high calc],
"Agressive",[very high calc]
)
Anonymous
3 years agoNot applicable
Hello you can try :
Measure =
switch(
selectedvalue(table[risk appetite]),
"Averse",[very low calc],
"Minimal",[low calc],
"Conservative",[Medium calc],
"Flexible",[high calc],
"Agressive",[very high calc]
)