I know how to reference 1 range of cells in an if statement. I had the below and it worked well.
=IF(ISNA(MATCH("Yes",'Ticket Offer Info'!B21:B24,0)),"No","Yes")
But I have having trouble figuring out how to add another range as an "OR" to the formula. I need to also reference any yes in range " 'Ticket Offer Info'!B26:B31 ". Basically if there is a "Yes" in either of the 2 ranges then return a "Yes" if not then "No"
I had the below but I know it is not quite right.
=IF(OR(ISNA(MATCH("Yes",'Ticket Offer Info'!B21:B24,0)),ISNA(MATCH("Yes",'Ticket Offer Info'!B26:B31,0))),"No","Yes")
Any ideas
=IF(ISNA(MATCH("Yes",'Ticket Offer Info'!B21:B24,0)),"No","Yes")
But I have having trouble figuring out how to add another range as an "OR" to the formula. I need to also reference any yes in range " 'Ticket Offer Info'!B26:B31 ". Basically if there is a "Yes" in either of the 2 ranges then return a "Yes" if not then "No"
I had the below but I know it is not quite right.
=IF(OR(ISNA(MATCH("Yes",'Ticket Offer Info'!B21:B24,0)),ISNA(MATCH("Yes",'Ticket Offer Info'!B26:B31,0))),"No","Yes")
Any ideas