ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Workbook Reset AutoFilter to ShowAll (https://www.excelbanter.com/excel-programming/401886-workbook-reset-autofilter-showall.html)

David J[_3_]

Workbook Reset AutoFilter to ShowAll
 
I have a large workbook that has the Autofilter available for many people to
view and I want to be able to reset the Autofilter to Show All before the
workbook is saved or closed. Please explain how in code clearly for this
novice.

Dave Peterson

Workbook Reset AutoFilter to ShowAll
 
I found that it's better to reset the autofilter when the workbook is opened.

If you reset it when you close the workbook, you'll have to save the workbook.
And your users may not want to save their changes.

This goes into a General module:

Option Explicit
Sub auto_open()
dim wks as worksheet
for each wks in thisworkbook.worksheets
with wks
If .FilterMode Then
.ShowAllData
End If
end with
next wks
End Sub

David J wrote:

I have a large workbook that has the Autofilter available for many people to
view and I want to be able to reset the Autofilter to Show All before the
workbook is saved or closed. Please explain how in code clearly for this
novice.


--

Dave Peterson


All times are GMT +1. The time now is 11:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com