It depends on your single select choices.
One way is to use a SWITCH formula:
SWITCH( {single select field name},
"choice A", 1,
"choice B", 2,
"choice C", 3
)
Another option works if the single select value looks like a number:
VALUE({single select field name})
Sometimes a combination approach also works and there are also interesting things that can be done by combining functions. However, these all depend on the actual choices.
Thank you for the quick response. This solution works as expected.
Does anyone know if there is a way to access the actual offered single select options to use in the formula rather than having to type them in using manually?
This way if I change the single select option wording my formula would not break.
Thanks in advance.