10-21-2025, 03:02 PM
And can I ask about these statements -- this is just making my OCD twitch, and I didn't even know I *had* OCD:
If Err >= 1 And Err <= 1 Then
The only number that can be >= 1 and also be <= 1... IS 1.
Why isn't this just a very simple:
IF Err = 1 Then...
Or even better:
SELECT CASE Err
CASE 1:
My brain is hurting. This code is twitching my eyebrows. LOL!!
If Err >= 1 And Err <= 1 Then
The only number that can be >= 1 and also be <= 1... IS 1.
Why isn't this just a very simple:
IF Err = 1 Then...
Or even better:
SELECT CASE Err
CASE 1:
My brain is hurting. This code is twitching my eyebrows. LOL!!

