Please can you advice where i'm going wrong.
my IF statement is breaking logic in picking the right strcode value.
Can u please advice whats wrong with this syntax?
I have also attached a worksheet to explain the problem
My code is below
If strOnG8 = "Yes" and Range(RangeFinder("A") + strCurrentRow).Value2 Then
strcode = "Asia"
ElseIf strOnH8 = "Yes" and Range(RangeFinder("B") + strCurrentRow).Value2 Then
strcode = "Africa"
ElseIf strOnI8 = "Yes" and Range(RangeFinder("C") + strCurrentRow).Value2 Then
strcode = "S America"
ElseIf strOnJ8 = "Yes" and Range(RangeFinder("D") + strCurrentRow).Value2 Then
strcode = "Australia"
End If
If strOnG8 = "No" and Range(RangeFinder("A") + strCurrentRow).Value2 Then
strcode = "N America"
ElseIf strOnH8 = "No" and Range(RangeFinder("B") + strCurrentRow).Value2 Then
strcode = "Europe"
ElseIf strOnI8 = "No" and Range(RangeFinder("C") + strCurrentRow).Value2 Then
strcode = "Antartica"
ElseIf strOnJ8 = "No" and Range(RangeFinder("D") + strCurrentRow).Value2 Then
strcode = "No more continents to choose"
End If
'RangeFinder and strcode are range and string variables respectively pulled from another function in my sheet and they are all working fine. There is no dependency
of them to the above code
Bookmarks