Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hello, I have an If Vlookup formula where If the VLookup item is not found or results in an N/A then leave the cell blank. If it finds what its looking for then put the word "Good" in the cell. The formula below is putting "Good" when it finds a good result and N/A when it doesn't find the match. Please help. I have tried over a dozen things but nothing worked. IF(VLOOKUP(A1829,'MAP Inbox'!$1:$65536,1,FALSE),"Good") -- lacosta ------------------------------------------------------------------------ lacosta's Profile: http://www.excelforum.com/member.php...o&userid=15519 View this thread: http://www.excelforum.com/showthread...hreadid=518810 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISNA(YourLookupFormula),"","Good")
-- Kind regards, Niek Otten "lacosta" wrote in message ... Hello, I have an If Vlookup formula where If the VLookup item is not found or results in an N/A then leave the cell blank. If it finds what its looking for then put the word "Good" in the cell. The formula below is putting "Good" when it finds a good result and N/A when it doesn't find the match. Please help. I have tried over a dozen things but nothing worked. IF(VLOOKUP(A1829,'MAP Inbox'!$1:$65536,1,FALSE),"Good") -- lacosta ------------------------------------------------------------------------ lacosta's Profile: http://www.excelforum.com/member.php...o&userid=15519 View this thread: http://www.excelforum.com/showthread...hreadid=518810 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try using the ISERROR function over the VLOOKUP, something like this:
IF(ISERROR(VLOOKUP(A1829,'MAP Inbox'!$1:$65536,1,FALSE),"Bad","Good") -- It is nice to be important, but it is more important to be nice "lacosta" wrote: Hello, I have an If Vlookup formula where If the VLookup item is not found or results in an N/A then leave the cell blank. If it finds what its looking for then put the word "Good" in the cell. The formula below is putting "Good" when it finds a good result and N/A when it doesn't find the match. Please help. I have tried over a dozen things but nothing worked. IF(VLOOKUP(A1829,'MAP Inbox'!$1:$65536,1,FALSE),"Good") -- lacosta ------------------------------------------------------------------------ lacosta's Profile: http://www.excelforum.com/member.php...o&userid=15519 View this thread: http://www.excelforum.com/showthread...hreadid=518810 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() The two suggestions below are still not working for me. What else can I do? Thanks. -- lacosta ------------------------------------------------------------------------ lacosta's Profile: http://www.excelforum.com/member.php...o&userid=15519 View this thread: http://www.excelforum.com/showthread...hreadid=518810 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
They really should work. You changed your formula: please post it
-- Kind regards, Niek Otten "lacosta" wrote in message ... The two suggestions below are still not working for me. What else can I do? Thanks. -- lacosta ------------------------------------------------------------------------ lacosta's Profile: http://www.excelforum.com/member.php...o&userid=15519 View this thread: http://www.excelforum.com/showthread...hreadid=518810 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using single cell reference as table array argument in Vlookup | Excel Worksheet Functions | |||
VLOOKUP Limitations | Excel Worksheet Functions | |||
Have Vlookup return a Value of 0 instead of #N/A | Excel Worksheet Functions | |||
vlookup data hidden within worksheet | Excel Worksheet Functions | |||
Vlookup info being used without vlookup table attached? | Excel Worksheet Functions |