Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
you can convert text to numbers using ToNumber([my text field])
That will only work if the text looks like numbers, but it is OK to have leading zeros.
If you need to convert pure text fields to numbers it would be a formula like
Case([My multiple choice field],
"Really Happy", 5,
"Sorta Happy", 4,
"Ambivalent", 3,
"Grumpy", 2,
"Don't Even Ask", 1)
That will only work if the text looks like numbers, but it is OK to have leading zeros.
If you need to convert pure text fields to numbers it would be a formula like
Case([My multiple choice field],
"Really Happy", 5,
"Sorta Happy", 4,
"Ambivalent", 3,
"Grumpy", 2,
"Don't Even Ask", 1)