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?
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 421 guests online.
New Excel Experts
Current Excel / VBA Jobs |
VLOOKUP formulaWhen 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. |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
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.