vlookup taking long time

vinod9111

Active Member
Joined
Jan 21, 2009
Messages
426
HI All,

I have two three sheets of data which run into 60000 rows and i need to do a vlookup from other file which too has similiar kind of records. It take a lot of time to produce the result, as it keeps on calculating. Is there any other way to do it , so that it can be faster.

Please help

regards,

Vinod
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
HI All,

I have two three sheets of data which run into 60000 rows and i need to do a vlookup from other file which too has similiar kind of records. It take a lot of time to produce the result, as it keeps on calculating. Is there any other way to do it , so that it can be faster.

Please help

regards,

Vinod

What is the formula you are invoking?
 
Upvote 0
Yes i can do that.

Then we can invoke a faster formula...

Either:
Code:
=IF(VLOOKUP(B2,'[master.xls]Direct'!$A$2:$A$24022)=B2,
   VLOOKUP(B2,'[master.xls]Direct'!$A$2:$C$24022,3),"Not Found")

Or:
Code:
=IF(LOOKUP(B2,'[master.xls]Direct'!$A$2:$A$24022)=B2,
    LOOKUP(B2,'[master.xls]Direct'!$A$2:$A$24022,
       '[master.xls]Direct'!$C$2:$C$24022),"Not Found")
 
Upvote 0
Hi alladin,

I tried the first formula but it thrown some error of "entered few arguments for this function".

did i miss something

regards
 
Upvote 0
Hi alladin,

I tried the first formula but it thrown some error of "entered few arguments for this function".

did i miss something

regards

Missing parameterts...
Code:
=IF(VLOOKUP(B2,'[master.xls]Direct'!$A$2:$A$24022,1,1)=B2,
   VLOOKUP(B2,'[master.xls]Direct'!$A$2:$C$24022,3,1),"Not Found")

The LOOKUP version doesn't need such parameters.
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,626
Members
452,933
Latest member
patv

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top