#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default VLOOKUP NESTED

Hi - this is my formula but it returns N/A. Where have I gone wrong please?

=IF(I620,I62*(VLOOKUP((VLOOKUP(C62,$J$43:$M$56,2, TRUE)),'Control
Sheet'!$F$29:$G$31,2,TRUE)),0)

Basically, if I62 has a value then i want to multiply it by a varaible
percentage which is determined by the vlookup formula. The nested Vlookup
finds the value against the name in C62 to use in Control Sheet to determine
the percentage rate.

TIA
Chris


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 130
Default VLOOKUP NESTED

I have ran into the same issues years ago, so what I had to do was wrap the
lookup function within an ISERROR function for the conditional statement,
which if the ISERROR function returns True, then perform something else such
the 0 in this case, and the false would perform the lookup function. The
downfall to this, it's having to perform the lookup 2 times, which I use the
MATCH function quite a bit. All of the different lookup functions has this
same basic problem with it, but it's best to have this sort of issue, as you
would rather know something isn't in the list than not to have a way of
knowing it's not in the list.

=IF(ISERROR(VLOOKUP(C62,$J$43:$M$56,2,TRUE)),0,IF( ISERROR(VLOOKUP(VLOOKUP(C62,$J$43:$M$56,2,TRUE),'C ontrol
Sheet'!$F$29:$G$31,2,TRUE)),0,I62*VLOOKUP(VLOOKUP( C62,$J$43:$M$56,2,TRUE),'Control
Sheet'!$F$29:$G$31,2,TRUE)))

Ronald R. Dodge, Jr.
Master MOUS 2000

"Tester" wrote in message
...
Hi - this is my formula but it returns N/A. Where have I gone wrong
please?

=IF(I620,I62*(VLOOKUP((VLOOKUP(C62,$J$43:$M$56,2, TRUE)),'Control
Sheet'!$F$29:$G$31,2,TRUE)),0)

Basically, if I62 has a value then i want to multiply it by a varaible
percentage which is determined by the vlookup formula. The nested Vlookup
finds the value against the name in C62 to use in Control Sheet to
determine the percentage rate.

TIA
Chris



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
Vlookup with nested IF guilbj2 Excel Discussion (Misc queries) 5 August 4th 06 07:28 PM
Can Someone Help me With a Nested VLOOKUP [email protected] Excel Discussion (Misc queries) 1 December 17th 05 02:24 PM
Nested vlookup tojo107 Excel Discussion (Misc queries) 1 August 10th 05 11:06 PM
nested ifs or vlookup or ? tannersnonni Excel Discussion (Misc queries) 1 June 1st 05 02:39 AM
Nested vlookup? astronautika Excel Worksheet Functions 1 November 19th 04 06:12 PM


All times are GMT +1. The time now is 07:06 PM.

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

About Us

"It's about Microsoft Excel"