This is probably a simple one.. but I've tried many different ways and it won't work.
The following calls the next function.
This does not...
This also does not work...
Can anyone help for the above functions? Thank you, as always
The following calls the next function.
Code:
If Range("E" & r).Value = 6 And Range("F" & r).Value = 6 Then
This does not...
Code:
If Range("E" & r).Value = 6 And Range("F" & r).Value = "_" Then
This also does not work...
Code:
If Range("E" & r).Value = 6 And (Range("F" & r).Value = 4 Or Range("F" & r).Value = 1) Then
Can anyone help for the above functions? Thank you, as always
Last edited: