Simple way to get around protect/unprotect sheet

Beginner35

New Member
Joined
Dec 9, 2013
Messages
10
Hello, i have been so frustrated with this below:

I have about 100 files and they all have this tab call "Oracle". Some of the file the "Oracle" tab is protected, some are not protected, some are protected with a password call 'ch'. My co-worker and I have been working on this issue but doesn't seem to able to find a simple solution. The end goal is to un-protect this Oracle sheet within a file doesn't matter there is password or no password or not protected to begin with and copy and paste the data on that tab into a new file. Please help!!!!

Sub Pickle()
Dim helen As Workbook
Dim helen2 As Workbook


Set helen2 = Workbooks.Add


Set helen = Workbooks.Open("h:\2014 Baseline\2014_13512 Chief Architect.xlsm")
helen.Activate
helen.Sheets("Oracle").Visible = True
helen.Sheets("Oracle").Unprotect Password:="ch"


Range("a5:au1228").AutoFilter Field:=29, Criteria1:="y"
Range("a5:au1228").Copy helen2.Sheets(1).Range("a5")


End Sub
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try:
Code:
helen.Activate
with helen.Sheets("Oracle")
.Visible = True
if .protectcontents then .Unprotect Password:="ch"
End With
 
Upvote 0
I kept getting Runtime error Object required. it highlighted
If.PrectectContents Then.Unprotect Password:="ch"

where am I going wrong? It should be simple to unprotect.
 
Upvote 0
It also looks like when I try to un-protect some Oracle tabs don't have a password so it can't handle unprotect Password:="ch". Some have this password some were protected without password. I am not sure that makes a difference or not.
 
Upvote 0
If you use the code I posted you will not get the error. :)
 
Upvote 0
hi here is copy and paste of my whole thing. I realized when I typed it in my last reply there was spelling error. It is still showing error to unprotect

Sub Pickle()
Dim helen As Workbook
Dim helen2 As Workbook


Set helen2 = Workbooks.Add


Set helen = Workbooks.Open("h:\2014 Baseline\2014_13512 Chief Architect.xlsm")
helen.Activate
helen.Sheets("Oracle").Visible = True
With helen.Sheets("Oracle").Visible = True
If .ProtectContents Then .Unprotect Password:="ch"
End With


Range("a5:au1228").AutoFilter Field:=29, Criteria1:="y"
Range("a5:au1228").Copy helen2.Sheets(1).Range("a5")


End Sub
 
Upvote 0
That is not what I posted. This part:
Code:
helen.Sheets("Oracle").Visible = True
With helen.Sheets("Oracle").Visible = True
If .ProtectContents Then .Unprotect Password:="ch"
End With
should be:
Code:
With helen.Sheets("Oracle")
.Visible = True
If .ProtectContents Then .Unprotect Password:="ch"
End With
 
Upvote 0
hi Rory:

Now I am getting the error I used to get by play with the code saying I need to unprotect sheet in order to filter. Blow is the error that I get now using your exact code.



Run-time Error'1004':
You cannot use this command on a protected sheet. To use this command, you must first unprotect the sheet(Review tab, Changes group, Unprotect Sheet button). You may be prompted for a password
 
Upvote 0
It seems like when I get the
Run-time Error'1004':
You cannot use this command on a protected sheet. To use this command, you must first unprotect the sheet(Review tab, Changes group, Unprotect Sheet button). You may be prompted for a password

It does no like the code:
Range("a5:au1228").AutoFilter Field:=29, Criteria1:="y"
Range("a5:au1228").Copy helen2.Sheets(1).Range("a5")

It still thinks it is a protected sheet even thought I unprotected it with code above..



 
Upvote 0
It may simply be that you have not specified the sheet for the autofilter command:
Code:
Sub Pickle()
   Dim helen                       As Workbook
   Dim helen2                      As Workbook

   Set helen2 = Workbooks.Add

   Set helen = Workbooks.Open("h:\2014 Baseline\2014_13512 Chief Architect.xlsm")
   
   With helen.Sheets("Oracle")
      .visible = True
      If .ProtectContents Then .Unprotect Password:="ch"
      .Range("a5:au1228").AutoFilter Field:=29, Criteria1:="y"
      .Range("a5:au1228").Copy helen2.Sheets(1).Range("a5")
   End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,037
Members
449,062
Latest member
mike575

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