Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I using =VLOOKUP(BO9,'Employee List'!A1:B240,2).
Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(ISERROR(<your vlookup function)=TRUE,"",<your vlookup function)
"Tim" wrote in message ... I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(ISNA(VLOOKUP(.............)),"",VLOOKUP(...... .........))
This will return a empty cell if the Vlookup returns a #N/A error. -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "Tim" wrote in message ... I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You don't need the =TRUE, just
=IF(ISERROR(<your vlookup function),"",<your vlookup function) -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Aaron" wrote in message ... =IF(ISERROR(<your vlookup function)=TRUE,"",<your vlookup function) "Tim" wrote in message ... I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=if(BO9="","", VLOOKUP(BO9,'Employee List'!A1:B240,2))
if you want to suppress the fact that a match is not made =if(isna( VLOOKUP(BO9,'Employee List'!A1:B240,2)),"", VLOOKUP(BO9,'Employee List'!A1:B240,2)) -- Regards, Tom Ogilvy "Tim" wrote in message ... I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tim wrote:
I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell You could try: =IF(ISNA(VLOOKUP(BO9,'Employee List'!A1:B240,2)),"",VLOOKUP(BO9,'Employee List'!A1:B240,2)) Regards, -- Beto Reply: Erase between the dot (inclusive) and the @. Responder: Borra la frase obvia y el punto previo. |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Got it now...
Thanks for your help guys Tim -----Original Message----- =IF(ISNA(VLOOKUP(.............)),"",VLOOKUP(..... ..........)) This will return a empty cell if the Vlookup returns a #N/A error. -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "Tim" wrote in message ... I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim . |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just so you know, as an alternative to the other replies, you can us
the IF function. for example: IF(A1="", "", VLOOKUP(*your Vlookup criteria*)) lol, oh wait, that was already suggested, wasn't it -- Message posted from http://www.ExcelForum.com |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=if(iserror(vlookup(BO9,'Employee List'!
A1:B240,2)),"",VLOOKUP(BO9,'Employee List'!A1:B240,2)) -----Original Message----- I using =VLOOKUP(BO9,'Employee List'!A1:B240,2). Is there away to have the cell remain blank if nothing is entered. As it is #N/A, shows up in the cell Zero Value is turned off Thanks Tim . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Vlookup then interpolate,return corresponding value, if not, return other value | Excel Worksheet Functions | |||
Vlookup return Zero if not there | Excel Worksheet Functions | |||
VLookUp - Does the VLookUp return the exact information? | Excel Worksheet Functions | |||
Vlookup - return row no. instead of value | Excel Discussion (Misc queries) | |||
VBA Syntax for VLOOKUP to return array of return values | Excel Programming |