Hi Biff,
I guess so, point it out to me please.
=TRUE????
Ak
You reproduced it:
=IF(ISERROR(VLOOKUP($H12,Dusa,4,FALSE)=TRUE),0,VLOOKUP($H12,Dusa,4,FALSE))
Let's assume the result of the lookup is X.
As written, that formula is doing this:
=IF(ISERROR("X"=TRUE),0,VLOOKUP($H12,Dusa,4,FALSE))
It works but it's just by "dumb luck".
If the lookup returns #N/A then:
=IF(ISERROR(#N/A=TRUE),0,VLOOKUP($H12,dusa,4,FALSE))
ISERROR(#N/A=TRUE) = ISERROR(#N/A) = TRUE
And the result of the formula will be 0 as expected.