View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bunnis
 
Posts: n/a
Default Saving some cells

I have a protected worksheet with some cells unprotected, and this works
fine till I run a macro to essentally clear some of the unprotected cells.
The cells get cleared but the 'unprotected' cells get locked in the process.
Is there a way round this or am I missing the obvious.
Have included the macro code for your comments

Many thanks
Bernard


Sub Macro1()
'
' '
' Keyboard Shortcut: Ctrl+d
'
Application.Goto Reference:="R6C1"
Range("A6").Select
Range(Selection, Selection.End(xlDown)).Select
Range("A6:AF28").Select
Selection.Clear
Application.Goto Reference:="R32C1"
Range("A32:AF38").Select
Selection.Clear
Application.Goto Reference:="R42C1"
Range("A42:AF48").Select
Selection.Clear
Application.Goto Reference:="R1C2"
Range("B1").Select
ActiveCell.FormulaR1C1 = "N"
Selection.AutoFill Destination:=Range("B1:AF1"), Type:=xlFillDefault
Range("B1:AF1").Select
'Range("U21").Select
Application.CommandBars("Stop Recording").Visible = False
Range("A3").Select
MsgBox "Enter First Date of the Month, eg 1/10/2006"
MsgBox "Confirm Public Holidays, Change N to Y, where appropriate "
End Sub