Hello. Is there any alternative to a match formula for speed? My spreadsheet dies with this formula.
=MATCH(D776334,'Renewals .csv'!$A$2:$A$463252,0)
Hello. Is there any alternative to a match formula for speed? My spreadsheet dies with this formula.
=MATCH(D776334,'Renewals .csv'!$A$2:$A$463252,0)
Try converting your.csv file to an excel file
Hello,
this may sound bizarre, but if you sort your data by column A, you can use two approximate lookups, which are a lot faster than the exact match lookup.
=IF(VLOOKUP(D776334,'Renewals .csv'!$A$2:$A$463252,1,TRUE)=D776334,MATCH(D776334,'Renewals .csv'!$A$2:$A$463252,1))
Charles Williams explains it here: https://fastexcel.wordpress.com/2012...han-1-vlookup/
Let me know if that works for you.
cheers, teylyn
Also, check out Mike Alexander's evaluation of the double lookup trick. Quoting from this page
Double-VLOOKUPv2.gifAt one extreme, if your lookup table has 10,000 things in it, the double VLOOKUP trick on sorted data is 28 times faster than the standard VLOOKUP on unsorted data
At the other, if your lookup table has 1,000,000 things in it, the double VLOOKUP trick on sorted data is 3,600 times faster than the standard VLOOKUP on unsorted data
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks