Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default working with nested vlookup formulas

=IF(ISNA(VLOOKUP($E8,Pension,9,FALSE)),"Defined",V LOOKUP($E8,Pension,9,FALSE))

This formula is works great in there is a number in the E collumn. but if
there is no number in the E column it show "defined" I what it to show
nothing. any ideas
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default working with nested vlookup formulas

This formula is works great in there is a number in the E collumn.

Does E column mean E8 in the formula?

Maybe this:

=IF(ISNA(VLOOKUP($E8,Pension,9,0)),"",VLOOKUP($E8, Pension,9,0))


--
Biff
Microsoft Excel MVP


"HR Director" wrote in message
...
=IF(ISNA(VLOOKUP($E8,Pension,9,FALSE)),"Defined",V LOOKUP($E8,Pension,9,FALSE))

This formula is works great in there is a number in the E collumn. but if
there is no number in the E column it show "defined" I what it to show
nothing. any ideas



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default working with nested vlookup formulas

Hi,

You could use:

=IF($E8="","",IF(ISNA(VLOOKUP($E8,Pension,9,)),"De fined",VLOOKUP($E8,Pension,9,)))

or if you are running 2007

=IF($E8="","",IFERROR(VLOOKUP($E8,Pension,9,),"Def ined"))

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"HR Director" wrote:

=IF(ISNA(VLOOKUP($E8,Pension,9,FALSE)),"Defined",V LOOKUP($E8,Pension,9,FALSE))

This formula is works great in there is a number in the E collumn. but if
there is no number in the E column it show "defined" I what it to show
nothing. any ideas

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Nested IF not working..... Patrick Excel Worksheet Functions 5 October 1st 08 04:18 AM
Nested IF Function not working Paula Excel Worksheet Functions 11 July 4th 08 03:31 AM
Outlining in nested subtotals not working Debi C Excel Worksheet Functions 1 October 28th 06 07:57 PM
Countif with nested function not working? jshuatree Excel Worksheet Functions 4 July 17th 06 10:48 PM
Nested IF(AND is not working Todd F. Excel Worksheet Functions 13 June 24th 05 10:20 PM


All times are GMT +1. The time now is 08:58 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"