RE: "COMPRESSING" A LARGE SHEET WITH 31,000 ROWS OF DATA, YET NOT LOSING SEARCH, COPY ACCESS CAPABILITY, ETC....

chazrab

Well-known Member
Joined
Oct 21, 2006
Messages
881
Office Version
  1. 365
Platform
  1. Windows
Sheet2 has 31000 rows in 4 columns, A, B, C AND D. The Rowsource property for the FIND method will always be the same:
Code:
Sheets("Sheet2")!B1:G31103.
(Column G does not have every row populated with 31,103 rows. Columns B through E does.

Is there a way to compress this sheet (i.e., like a zip file) so the file won't be so large, making the code work
more efficiently, without losing any application design capability/efficiency ?

I can't be the only one who may have or had this issue, maybe with not so many rows.

Please help with any suggestions and/or ideas.

Thanks for anyone's help.
cr
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Do a little research on using arrays. You could store all the data in your sheet in an array. This stores the data in memory. You can then manipulate the data in memory which is very fast instead of having to repeatedly access the worksheet directly which slows thing down.
 
Upvote 0

Attachments

  • THREAD TITLE REMINDER.png
    THREAD TITLE REMINDER.png
    51.7 KB · Views: 3
Upvote 0
Do a little research on using arrays. You could store all the data in your sheet in an array. This stores the data in memory. You can then manipulate the data in memory which is very fast instead of having to repeatedly access the worksheet directly which slows thing down.
Thanks mumps. Will look into this today.
cr
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,384
Members
448,956
Latest member
JPav

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