Forum Discussion
Anonymous
3 years agoNot applicable
Multiple Column, multiple IFS and multiple Returns
Hello All, I'm am trying to return a text based off of IFS in two columns. I'm not sure how I go about it. The "Score Rank" column was fairly easy to do, but I'm not sure about adding another colu...
- 3 years ago
hi Anonymous
this info is critical, try this:
Score_Rank = SWITCH( TRUE(), [Type]="Issue", [Type], [Probability]<8, "low", [Probability]<15, "medium", "high" )
FreemanZ
Super User
3 years agohi Anonymous
this info is critical, try this:
Score_Rank =
SWITCH(
TRUE(),
[Type]="Issue", [Type],
[Probability]<8, "low",
[Probability]<15, "medium",
"high"
)
Anonymous
3 years agoNot applicable
Thank you. That's got me about 90% there.
I should have been more specific with calculation explanation. If the type is "Issue", then the only value it can return is "Issue" For "Risk", it follows the below criteria:
Low = 0-8
Med = 9-14
High = 14+
RS
Mike
The formula is returning incorrect values for the Score_Rank column.
Example of what's its returning:
Type Prob Score Rank Score_Rank
Risk 9 Medium Low
Risk 5