I am trying to create a function that will give a certain rate for a particular job class. For example
if jobclass = 'J' then 20.00 else if jobclass = 'CJ' then 25.00 else if jobclass = 'A' then 18.00
etc...
I know if statements require a numerical value, but I don't know how to convert the jobclass to a number. Am I barking up the wrong tree?????
if jobclass = 'J' then 20.00 else if jobclass = 'CJ' then 25.00 else if jobclass = 'A' then 18.00
etc...
I know if statements require a numerical value, but I don't know how to convert the jobclass to a number. Am I barking up the wrong tree?????