Trying to write a statement with a combination of VLOOKUP, OR, and IF. Struggling with the placement of IF and OR clauses and/or parentheses.
Here's what I've tried:
IF(OR(VLOOKUP(B4,Agreements!F:G,2,0),VLOOKUP(C4,Agreements!F:G,2,0)) = "Active", "Yes", "No")
(Returns #N/A)
=IF(OR(VLOOKUP(B4,Agreements!F:G,2,0)="Active","Yes","No",VLOOKUP(C4,Agreements!F:G,2,0))="Active","Yes","No")
(Returns No when it should return Yes)