I have a form calculating values depending on which box checked - i.e. box 1 = 3 points, box 2 = 5 points, etc...
What I am looking is a way to return a string value based on a total score - like
1 - 100 returns loser
101 - 300 - needs help
301 - 500 getting there
501 - 600 pro...etc.
Can anyone suggest any code?
Using the 'if' statement with the tests in ascending order:
Or one could use the 'switch' statement
George Kaiser