View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Bridges[_2_] Bob Bridges[_2_] is offline
external usenet poster
 
Posts: 257
Default Prompt to Unprotect Single Worksheet

Seems to me the principle would be the same, wouldn't it? I hardly ever use
protection, but it looks from the documentation as though it applies to each
worksheet rather than to the workbook as a whole. So the examples you've
seen that apply to all worksheets in a workbook no doubt do something like a
For Each SheetObj In ActiveWorkbook.Worksheets, and then protect (or
unprotect) each SheetObj. So inside the loop it's doing exactly what you
want -- protect (or unprotect) a single sheet. What am I missing, here?

--- " wrote:
I've found lots of code to unprotect all worksheets in a workbook,
both with and without prompts for the password; however I can't seem
to locate anything for prompting a user to unprotect a single
worksheet in a workbook. Any guidance is greatly appreciated.