I need to determine is "X" is a multiple of 1000.
I know I can say,
but I'm thinking there must be a better way, like with the "In" operator in SQL or VB with strings:
or is there an even better way, like with some kind of formula?
Thanks for your help.
Mike
I know I can say,
Code:
If x=1000 or x=2000 or x=3000 or x=4000 or x=5000 or x=6000....adinfinitum
but I'm thinking there must be a better way, like with the "In" operator in SQL or VB with strings:
Code:
If x in ("a","b","c", etc).
or is there an even better way, like with some kind of formula?
Thanks for your help.
Mike