Help

Re: Switch formula help

Solved
Jump to Solution
1084 5
cancel
Showing results for 
Search instead for 
Did you mean: 
Michelle_King
7 - App Architect
7 - App Architect

Hi I am not sure it is an IF formula or a switch formula that I need but I cannot work this one our for love nor money.

So I am trying to write a complex risk assessment and within it is a simple single select column where my options are

Improbable
Remote
Possible
Probable
Almost Certain

What I was hoping to do is have a column next to it that converts the different options into numbers 1-5 (which I would then hide but use in calculations.) There are lots of different versions of this within the base but for the life of me I cannot work out how to take the select options and get it to return a number am I going crazy? Any help greatfully recieved xx

1 Solution

Accepted Solutions
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

Yes, @Michelle_King, a SWITCH() function would work great here:

SWITCH(
   {Single Select Column Name},
   "Improbable", 1,
   "Remote", 2,
   "Possible", 3,
   "Probable", 4,
   "Almost Certain", 5
)

See Solution in Thread

7 Replies 7
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

Yes, @Michelle_King, a SWITCH() function would work great here:

SWITCH(
   {Single Select Column Name},
   "Improbable", 1,
   "Remote", 2,
   "Possible", 3,
   "Probable", 4,
   "Almost Certain", 5
)

Thank you but it’s returning the same problem I had with the if formula :frowning: the improbable returns 1 fine but none of the other options are returning a value)

Can you share a screen capture of the configuration of your single select field? Maybe there are some slight differences in case or spacing in your field.

Thanks I’m sure its something silly that I am doing xxx
1 2

That seems odd – I don’t see anything wrong with your formula, and I don’t get the same issue with a similar setup:

CleanShot 2020-11-20 at 09.12.34

CleanShot 2020-11-20 at 09.12.42

I’m not really sure what to suggest other than something as silly as “try refreshing or relaunching your base”.

If the spelling of each option in your Single Select list exactly matches how you’ve spelled each option in your SWITCH() formula, there doesn’t seem to be a good reason for this failure.

Try looking for a leading or trailing space in your values for the single select field. If there are any, delete them.

Its really bizarre as the same formula i have got working for a different column its really bizarre