Dear Andy
To Protect some cells and not others, select the cells you
want to be active (editable), right-mouse click, and then
select "Format Cells". From there click on
the "Protection" tab and uncheck the "Locked" tick box. OK
all that and then go back to the spreadsheet. Now click on
the Tools menu and select "Protection" from there, and
then select "Protect Worksheet"
As far as protecting the headers and footers from being
edited, one way to do it would be to turn of the "Header
and Footer..." View menu item. This is done by placeing
the following code into a new module attached to your open
workbook.
Sub Auto_Open()
With CommandBars("Worksheet Menu Bar")
With .Controls("View")
.Controls("Header And Footer...").Enabled =
False
End With
End With
End Sub
Hope this helps
Paul Falla