Home > Mobile >  Problem with IF AND and Vlookup nested formula
Problem with IF AND and Vlookup nested formula

Time:07-08

I am trying to put a nested IF, AND and Vlookup formula. I want formula to return the value "0.17" in cell F3 if cell D3 has text "pasha" and B3 is not equal to cells mentioned in vlookup formula but its returns zero instead of showing 0.1. Please guide, TIA

=IFERROR(IF(AND(D3="Pasha",VLOOKUP(B3,G70:H78,2,0)<>B3),0.17,IF(VLOOKUP(B3,$B$69:$B$89,1,0)=B3,0.15,"")),0)

enter image description here

You need to to sort the vlookup() but the process for testing the conditions is there.

  • Related