Hello,
I am working with a formula field that I have created to take a Select list value from Field 1 and change it into a number. Example:
Switch ( {field 1}
“Choice 1”, ‘1’,
“Choice 2”, ‘2’
)
The output of this is a text value of 1 or 2 not a numeric value. The tool will not allow me to use the following , the 1 and 2 turn red.
Switch ( {field 1}
“Choice 1”, 1,
“Choice 2”, 2
)
Using the first switch function how do I now set the 1 and 2 to a numeric value?