I’m apparently missing something here. IF
A = dog
B = dog
Then doesn’t A=B
Here is my test IF statements –
When I run this I only see messages “#1” & “#2”, I do not see “#3”. Any suggestions?
Thanks for viewing,
Steve K.
A = dog
B = dog
Then doesn’t A=B
Here is my test IF statements –
Rich (BB code):
If txtYEAR = 2025 Then MsgBox "#1"
If Range("S32").End(xlDown).Offset(0, -1) = 2025 Then MsgBox "#2"
If txtYEAR = Range("S32").End(xlDown).Offset(0, -1) Then MsgBox "#3"
When I run this I only see messages “#1” & “#2”, I do not see “#3”. Any suggestions?
Thanks for viewing,
Steve K.