how to handle Monster Excel data

vaibhav_kurane007

New Member
Joined
Jan 17, 2025
Messages
2
Office Version
  1. 2010
Platform
  1. Windows
i am using formula excel was too slow what i do?


=IFERROR(IFERROR(IFERROR(IFERROR(VLOOKUP(E4996,DMA!$A$1:$D$10000,COLUMN(DMA!B1964),0),VLOOKUP(E4996,'DMA 2'!$A$1:$D$10000,COLUMN('DMA 2'!B1964),0)),(VLOOKUP(E4996,'DMA 3'!$A$1:$D$10000,COLUMN('DMA 3'!B1964),0))),(VLOOKUP(E4996,'DMA 4'!$A$1:$D$10000,COLUMN('DMA 4'!B1964),0))),VLOOKUP(E4996,'DMA 5'!$A$1:$D$10000,COLUMN('DMA 5'!B1964),0))
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Is your data really 10,000 rows? or are you referring to 10,000 rows so as not to miss any data? If so, consider converting your ranges to tables and only refer to the actual data.
In addition, having data spanning more than one worksheet often leads to problems like these. Better to have all data in a single table.
 
Upvote 0
Is your data really 10,000 rows? or are you referring to 10,000 rows so as not to miss any data? If so, consider converting your ranges to tables and only refer to the actual data.
In addition, having data spanning more than one worksheet often leads to problems like these. Better to have all data in a single table.
Not possible to add 5 sheet data on one table those are different data. At time only 10000 rows are actually used. So please get me short formula for Get 5 sheets data on one sheet.
 
Upvote 0
Jan had something else in mind. References to ranges in other sheets work slower than references to ranges in the same sheet. That's why he suggests that the data be in one sheet, not one table.

Also, search formulas are unfortunately slow. Especially as they occur in large quantities.

Artik
 
Upvote 0
Perhaps this is faster?
Excel Formula:
=LET(data,VSTACK(DMA!$A$1:$D$10000,'DMA 2'!$A$1:$D$10000,'DMA 3'!$A$1:$D$10000,'DMA 4'!$A$1:$D$10000,'DMA 5'!$A$1:$D$10000),VLOOKUP(E4996,data,COLUMN('DMA 2'!B1964),0))
 
Upvote 0

Forum statistics

Threads
1,226,099
Messages
6,188,901
Members
453,510
Latest member
LarryWB423

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