Can someone guide me please

dhome

New Member
Joined
Dec 28, 2016
Messages
47
Good Morning, I have two tables of data in Table 1 in column D I have 430,000 rows of data and in table 2 in column C I have 350,000 rows of data. completing a Lookup is crashing the computer, Can anyone in the room offer any alternative formula please?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
what formula are you using
What version of Excel
how are you referencing the cells

=index( $D$2:$D$500000, match( C2 , $A$2:$A$500000,0))

what is your formula - post here
maybe a sample using XL2BB - see menu or signature
 
Upvote 0
what formula are you using
What version of Excel
how are you referencing the cells

=index( $D$2:$D$500000, match( C2 , $A$2:$A$500000,0))

what is your formula - post here
maybe a sample using XL2BB - see menu or signature
Hi
My formula was a simple VLOOK UP =VLOOKUP(A2,'list'!E2:E437000,5,FALSE)

There are three tabs
MASTER LIST
LIST
NET

Simply looking to fill column F in Master list with data from the List tab column F and column G in Master list with data from the Net tab column C
The issue is the LOOKUP keeps crashing as I have 500,000 rows of data in the Master List Tab.

Using Windows 10
Thank you
 
Upvote 0
that will not work
=VLOOKUP(A2,'list'!E2:E437000,5,FALSE)

you are chosing column 5 from E
so E,F,G,H,J
column J
that needs to be included in the range
=VLOOKUP(A2,'list'!E2:J437000,5,FALSE)
 
Upvote 0
that will not work
=VLOOKUP(A2,'list'!E2:E437000,5,FALSE)

you are chosing column 5 from E
so E,F,G,H,J
column J
that needs to be included in the range
=VLOOKUP(A2,'list'!E2:J437000,5,FALSE)
It wont work full stop, that was a typo by me, I cannot use VLOOKUP to solve this issue, It crashes computer, MATCH MAY WORK do you have any suggestions, or Power Tools?
Thank you
 
Upvote 0
Can i not use Index, Match
for completeness this is the index/match - if others are searching
as [B]severynm[/B] has posted , it may not solve the computer crash issue

=VLOOKUP(A2,'list'!E2:J437000,5,FALSE)

=Index($J$2:$J$437000, match ( A2, $E$2:$E$437000,0 ))

if you wanted to try
 
Upvote 0
for completeness this is the index/match - if others are searching
as [B]severynm[/B] has posted , it may not solve the computer crash issue

=VLOOKUP(A2,'list'!E2:J437000,5,FALSE)

=Index($J$2:$J$437000, match ( A2, $E$2:$E$437000,0 ))

if you wanted to try
how doe Index MATCH work when I am taking information from different tabs, there is no link to the
There are three tabs
MASTER LIST
LIST
NET
 
Upvote 0
=Index(list!$J$2:$J$437000, match ( A2, list!$E$2:$E$437000,0 ))
Sorry missed out the sheetname, you just use the same range as vlookup() with index/match
no idea how you have structed the lookup to work with 3 different tabs, all i was doing was replacing the formula you poste d
BUT before getting into the 3 tabs, if the
=Index(list!$J$2:$J$437000, match ( A2, list!$E$2:$E$437000,0 ))
crashes the computer - then not sure how to improve
I dont have any of the power tools as i'm on a Mac using OSX excel, which does NOT have those tools
Also I nolonger provide VBA solutions as the last time i used was late 90's early 00's

or addressing the full column
=INDEX(List!$J:$J,MATCH(A2,List!$E:$E,0))

I dont have all you data loaded and also not sure on the spec of your PC

In the past (1990's) even with a then leading spec laptop, i had issues and had to convert a lot of spreadsheets into Access - which i also had , as had office Pro versions
Again , cant help - 365 for Mac does not include Access
 
Upvote 0

Forum statistics

Threads
1,223,671
Messages
6,173,738
Members
452,533
Latest member
Alex19k

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