Nauticulus
New Member
- Joined
- Apr 16, 2018
- Messages
- 1
Hi,
I'm trying to check two cell values where both must be within the same range like this...
If 1<=Cell a<=6 and 1<=Cell b<=6 then execute
This is what I have at the moment...
Thanks
I'm trying to check two cell values where both must be within the same range like this...
If 1<=Cell a<=6 and 1<=Cell b<=6 then execute
This is what I have at the moment...
Code:
If ws2.Cells(d, "B").Value <= 6 And => 1 And ws2.Cells(d, "C").Value <= 7 And => 1 Then