Filtering on a protected & Shared workbook

ifu06416

Board Regular
Joined
Sep 5, 2011
Messages
56
Office Version
  1. 365
Hi there,

I had a macro that ran a report on a protected workbook. However there is now requirement to keep the workbook shared at all times so what used to be the first part of the code which would enter the password to unlock the protection no longer works while the WB is shared.

I have found a few lines of code online that allow me to clear all filters while the WB is protected and shared. However the macro bugs on the first line of the original code when it attempts to enter a filter value onto col 54.

The code is as below;

Sub test()


Sheets("PPBI").Select


Dim ws As Worksheet
Set ws = ActiveSheet
ws.AutoFilter.ShowAllData

ActiveSheet.Range("$A$2:$DU$9998").AutoFilter Field:=54, Criteria1:="<>"


End Sub

Can anyone help?

Regards,

John Carlin.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off

Forum statistics

Threads
1,217,348
Messages
6,136,047
Members
449,986
Latest member
rittersportyummy

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