Display value "Tower" if column [Escalation Level] is Level 1 or Level 2 or Level 3

So I'm trying to set the display value of a virtual column to "Tower" if one of my column [Escalation Level] is Level 1 or Level 2 or Level 3

"IM" if my column [Escalation Level] is Level 4 or Level 5

and "Executive" if my column [Escalation Level] is Executive

Hope you can help me guys

Solved Solved
0 3 56
1 ACCEPTED SOLUTION

 

IFS(
[Escalation Level]="Executive","Executive",
[Escalation Level]="Level 4","IM",
[Escalation Level]="Level 5","IM"
)

https://support.google.com/appsheet/answer/10107912?hl=en

Simon, 1minMaanger.com 

View solution in original post

3 REPLIES 3

IFS

 

IFS(
[Escalation Level]="Executive","Executive",
[Escalation Level]="Level 4","IM",
[Escalation Level]="Level 5","IM"
)

https://support.google.com/appsheet/answer/10107912?hl=en

Simon, 1minMaanger.com 

I'm not sure why I got some errors when pasted this on column formula but I was able to accomplish this after manually adding every detail via Data Explorer 🙂 thank you Sir

Top Labels in this Space