Tried to find one, I know its simple enought to create, but I'm trying to get away from creating everything from scratch and dont want to use the IIf() function.
Looking to see if an equivalent function exists that mimics the keyword "Between" in queries.
If I have a number X, I want to know if it lies somewhere in the bounds of range A through B. For example:
Is 234 higher than 13 and less than 100? No
Is 55 higher than 13 and less than 100? Yes
The values Im using are calculated KEY_ID values that don't exist in a table yet, and Im testing to prevent an overlap. This is the reason Im not using queries.
I don't need to know HOW to write the code, just need to know if it already exists since I cant find one.
Looking to see if an equivalent function exists that mimics the keyword "Between" in queries.
If I have a number X, I want to know if it lies somewhere in the bounds of range A through B. For example:
Is 234 higher than 13 and less than 100? No
Is 55 higher than 13 and less than 100? Yes
The values Im using are calculated KEY_ID values that don't exist in a table yet, and Im testing to prevent an overlap. This is the reason Im not using queries.
I don't need to know HOW to write the code, just need to know if it already exists since I cant find one.