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
3 years agoSuper User
hi Anonymous
try like:
Column =
IF(
[Type]="Issue",
[Type],
[Score Rank]
)