WaterSprite
Technical User
How come this code will not work,
Select Case Range(4, 2).Value
Case Is = February
I get runtime error 1004, range of object_Global failed.
But this code will:
Select Case Range("B4").Value
Case Is = February
Entering B4 is of no consequence, I just thought the (4, 2) would speed up the process.
Select Case Range(4, 2).Value
Case Is = February
I get runtime error 1004, range of object_Global failed.
But this code will:
Select Case Range("B4").Value
Case Is = February
Entering B4 is of no consequence, I just thought the (4, 2) would speed up the process.