VLOOKUP formula

When using formula [=VLOOKUP(A2,Orders!$H$20:$I$22,2,FALSE)] are situations when the results are FALSE and in output cells is produce FALSE.
How to avoid that, and insted just have empty cells?

RE: VLOOKUP formula

Hi,

Wrap VLOOKUP with IF function:

 = IF(VLOOKUP(A2, Orders!$H$20:$I$22, 2, FALSE) = FALSE, "", VLOOKUP(A2, Orders!$H$20:$I$22, 2, FALSE))

 

Best regards.