Excel 2007 Workbook Performance Issue When Using Filter

tvandersluis

New Member
Joined
Feb 22, 2011
Messages
1
Why would I be experiencing performance issues when using a filter in my excel 2007 workbook. The workbook is 113,110 KB, has many sheets, many pivot tables (using same data source for most), lookup formulas, charts with autopopulate based on lookups. When I insert a filter in one of my data sheets, it processes very slowly, like 1-2% at a time. Is there anything I can do to help the performance of this workbook without having to install more RAM on my PC?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You might try turning Calculation off at the begining of your code, them turn it back on at the end.
Code:
    EnableCalculation = False 'Turn off Calculation
' Your Filter code here....
    EnableCalculation = True 'Turn on Calculation
 
Upvote 0

Forum statistics

Threads
1,215,253
Messages
6,123,891
Members
449,131
Latest member
leobueno

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