Use 'Unfilter' macro on protected sheet

SaraWitch

Active Member
Joined
Sep 29, 2015
Messages
370
Office Version
  1. 365
Platform
  1. Windows
Hello peeps,

I am using a macro button to unfilter a sheet, which works grand until I protect the sheet. Is there a way to enable this with a protected sheet at all?
VBA Code:
Sub Unfilter()
Sheet1.ShowAllData
End Sub
Ta very muchly! 😊
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Ah, don't worry! Got it!
VBA Code:
Sub Unfilter()
Worksheets("My Sheet Name").Unprotect "My Password"

Sheet1.ShowAllData

Worksheets("My Sheet Name").Protect "My Password", AllowFiltering:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True

Application.ScreenUpdating = True
End Sub
Thank you anyway! 😊
 
Upvote 0
Solution
Or for whole workbook:
VBA Code:
Sub Unfilter()
Dim wks As Worksheet
  Dim MyPassword As String

  MyPassword = "My Password"

  For Each wks In Worksheets

    If wks.FilterMode = True Then
           wks.Unprotect password:=MyPassword
           wks.ShowAllData
           wks.Protect password:=MyPassword, AllowFiltering:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True
    End If
  Next wks
End Sub
😊
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

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