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...
If ws2.Cells(d, "B").Value <= 6 And => 1 And ws2.Cells(d, "C").Value <= 7 And => 1 Then
Thanks