Hi,
I have the following If condition;
If Range("G1") <> "In-play" And Range("K3") = "Placed BACK Bet" And Range("AH10") = Range("AE4") Then
I also have many others with slight variations, such as;
If Range("G1") <> "In-play" And Range("K3") = "Placed BACK Bet" And Range("AH12") = Range("AE4") Then
Because the First Two conditions are always the same but the Third is different can i use the first part as IF and then add multiple OR conditions to the last part?
ie;
If Range("G1") <> "In-play" And Range("K3") = "Placed BACK Bet" And Range("AH10") = Range("AE4") Or Range("AH12") = Range("AE4") Then
Will this work or do i have to add 'And Or' when testing the 'Or' conditions within the 'If' conditions? Such as;
If Range("G1") <> "In-play" And Range("K3") = "Placed BACK Bet" And Range("AH10") = Range("AE4") And Or Range("AH12") = Range("AE4") Then
Many Thanks for your time guys!
Bookmarks