Hi,
This code should return the value in AQ10, but for some reason I'm getting a #VALUE error.
All the VLOOKUPS 100% equal 7.2. But at some point it gives me a TRUE=FALSE in the AND statement. I'm trying to test if all the VLOOKUP give equal each other, which they do, but this statement doesn't work. What am I doing wrong?
Thanks!
This code should return the value in AQ10, but for some reason I'm getting a #VALUE error.
Code:
=IF(AND(VLOOKUP(A10,'WOs (DSP Only)'!A:B,2,FALSE)=VLOOKUP(A10,'WOs (DSP Only)'!A:C,3,FALSE)=VLOOKUP(A10,'WOs (DSP Only)'!A:D,4,FALSE)=VLOOKUP(A10,'WOs (DSP Only)'!A:E,5,FALSE)=VLOOKUP(A10,'WOs (DSP Only)'!A:F,6,FALSE),VLOOKUP(A10,'WOs (DSP Only)'!A:F,6,FALSE)>=5,VLOOKUP('WOs (DSP Only)'!A:F,6,FALSE)<=7.5),AQ10,"wrong")
All the VLOOKUPS 100% equal 7.2. But at some point it gives me a TRUE=FALSE in the AND statement. I'm trying to test if all the VLOOKUP give equal each other, which they do, but this statement doesn't work. What am I doing wrong?
Thanks!