I have a formula that if 95915 or 95925 or 95950 in in Col G, then lookup the description in Col 2 on sheet1 otherwise return the result of the Index formula
where 95915, 95925, 95950 is in Col G, the description from the Vlookup is not being used. I only get the results from the Inde formula
it would be appreciated if someone could amend my formula
where 95915, 95925, 95950 is in Col G, the description from the Vlookup is not being used. I only get the results from the Inde formula
Code:
=IF(OR(G1615="95915",G1615="95925",G1615="95950"),VLOOKUP(Sheet1!$A$1:$B$11,2,FALSE),INDEX('[BR1tb(Cat).xls]TB'!$A:$A,MATCH(G1615,'[BR1tb(Cat).xls]TB'!$B:$B,0)))
it would be appreciated if someone could amend my formula