#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ian Ian is offline
external usenet poster
 
Posts: 109
Default INA help

HI some one was kind enough to show me how this function works, being a
beginner I was wondering if someone could help me figure this out...


Ok this is the function I would like to use:
=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))," ",VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))

I just need the parameters to search more then 500 cells i would need more
in the 5000+ cell range

Thanks
Ian

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,805
Default INA help

Use
=IF(ISNA(VLOOKUP(A1,Sheet2!A:B,2,FALSE)),"",VLOOKU P(A1,Sheet2!A:B,2,FALSE))

It will look for A1 anywhere in Col A [Sheet2] and (if found) return the
value from Col B [Sheet2]

If no match is found then ISNA will be true and "" will be returned as the
formula result.
"Ian" wrote:

HI some one was kind enough to show me how this function works, being a
beginner I was wondering if someone could help me figure this out...


Ok this is the function I would like to use:
=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))," ",VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))

I just need the parameters to search more then 500 cells i would need more
in the 5000+ cell range

Thanks
Ian

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default INA help

Do you mean that instead of: Sheet2!$A$1:$B$500 you want to expand that to
Sheet2!$A$1:$B$5000?

If so, just make that change in the formula.

Tip: FALSE and 0 mean the same thing in 4th argument of this formula. You
can save a few keystrokes by replacing FALSE with 0:

=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$5000,2,0)),"",V LOOKUP(A1,Sheet2!$A$1:$B$5000,2,0))


--
Biff
Microsoft Excel MVP


"Ian" wrote in message
...
HI some one was kind enough to show me how this function works, being a
beginner I was wondering if someone could help me figure this out...


Ok this is the function I would like to use:
=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))," ",VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))

I just need the parameters to search more then 500 cells i would need more
in the 5000+ cell range

Thanks
Ian



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default INA help


T. Valko;235420 Wrote:
Do you mean that instead of: Sheet2!$A$1:$B$500 you want to expand that
to
Sheet2!$A$1:$B$5000?

If so, just make that change in the formula.

Tip: FALSE and 0 mean the same thing in 4th argument of this formula.
You
can save a few keystrokes by replacing FALSE with 0:

=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$5000,2,0)),"",V LOOKUP(A1,Sheet2!$A$1:$B$5000,2,0))


--
Biff
Microsoft Excel MVP


"Ian" wrote in message
...
HI some one was kind enough to show me how this function works, being

a
beginner I was wondering if someone could help me figure this out...


Ok this is the function I would like to use:

=IF(ISNA(VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))," ",VLOOKUP(A1,Sheet2!$A$1:$B$500,2,FALSE))

I just need the parameters to search more then 500 cells i would need

more
in the 5000+ cell range

Thanks
Ian


You can probably gain performance by using
=IF(countif(sheet2!$A$1:$b$5000,a1),VLOOKUP(A1,She et2!$A$1:$B$5000,2,0),"")


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=65677

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



All times are GMT +1. The time now is 11:01 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"