I have a large spreadsheet that I currently have a “vlook-up” formula that is providing me results, however I need to further test another set of conditions that require me to test within the results of the original vlookup function and I am not sure how to code this formula.
I want to say, if Sheet1 column F2 thru F500 = xxx “and” Sheet 1 column G2 thru G500 = yyy, then perform the if statement below, else “blank”. There can only be “one” match within this test.
Note: Original – vlookup
=IF(ISERROR(VLOOKUP(F20,'Sheet1'!$F$2:$P$500,2,FALSE)),"No Data",VLOOKUP(F20,'Sheet1'!$F$2:$P$500,2,FALSE))
I want to say, if Sheet1 column F2 thru F500 = xxx “and” Sheet 1 column G2 thru G500 = yyy, then perform the if statement below, else “blank”. There can only be “one” match within this test.
Note: Original – vlookup
=IF(ISERROR(VLOOKUP(F20,'Sheet1'!$F$2:$P$500,2,FALSE)),"No Data",VLOOKUP(F20,'Sheet1'!$F$2:$P$500,2,FALSE))