As rows on Sheet1 increase, loading the app slows down...

chazrab

Well-known Member
Joined
Oct 21, 2006
Messages
917
Office Version
  1. 365
Platform
  1. Windows
...on 1/1/year of each year Sheet1 is blank, with only formulas in cols E& F. The app flies when opening it.

Now - 09/28/17, Sheet1 has 890 rows of data from cols A:F. At this point in time, the app takes too long to finish loading. By EOY, I will have 1400 rows of data filled on Sheet1 and the app will take even longer to load.

I'm hesitant to put Sheet1 in a new workbook and link it back to the core app because there are Autofilter macro reports generated using Sheet1 and linking to an external workbook would to me, cause all sorts of problems. So I'd like to keep Sheet1 contained in the core app, if there's a workaround that would allow faster loading performance as Sheet1's row data grows

Does anyone know of a way to keep Sheet1 within the core app, and still have the core app load quickly as Sheet1's rows of data increase with time?

There must be others who've had this same performance loading issue as a sheet data grows.

Thanks out there for any help and suggestions on this.

cr
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

What kind of formulas are in use?
Are there any macros (event driven) that in use?
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

What kind of formulas are in use?
Are there any macros (event driven) that in use?

very elementary and simple ones
Code:
COL I: =IF(+A3<>"",I2-F3+H3, "")
COL J=IF(+B3<>"",J2-E3-F3+H3, "")
all the way down to about row 2000
no event driven macros. As you can tell, this is just emulates a simple register sheet.
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

hmm. Yeah, that function shouldn't affect time on Excel desktop. I would get rid of the "+" in the logic evaluation as it does nothing but make for an additional dot to be processed.
Are there other sheets with dependent calculations to the sheet in the workbook?
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

hmm. Yeah, that function shouldn't affect time on Excel desktop. I would get rid of the "+" in the logic evaluation as it does nothing but make for an additional dot to be processed.
Are there other sheets with dependent calculations to the sheet in the workbook?

Nope...
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

Conditional formatting? (I forget to ask as I hardly ever use it.)
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

Conditional formatting? (I forget to ask as I hardly ever use it.)

Yes. Rows 2 -1500 have an alternating fill color of light blue. I just used
Code:
=MOD(ROW(),2)=1
to fill this range rapidly.
How would that slow down the loading speed ?
 
Upvote 0
Re: ,,,as rows on Sheet1 increase, loading the app slows down...

Excel must perform the evaluation each time.
It is better to format as a Table and use one of the stripped formatting (like the default.)
 
Upvote 0

Forum statistics

Threads
1,223,885
Messages
6,175,180
Members
452,615
Latest member
bogeys2birdies

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