Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Must I use IRM to protect an entire workbook?

I'm trying to protect an entire workbook so that the forumlae will be hidden
from view. I would rather not protect each individual sheet, using a
password for each sheet. However when I try to use the Protect Workbook I'm
taken to sign up for IRM and I don't know why I must? Is there no way to
protect an entire workbook with one password with out signing up for IRM?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Must I use IRM to protect an entire workbook?

Protecting the workbook does nothing to protect cells on the sheets.

Workbook protection merely protects from changing structure or windows.

e.g. you cannot insert or delete sheets when workbook is protected.

That must be done by protecting each sheet.

You can protect all sheets with one password by using VBA

Sub ProtectAllSheets()
Application.ScreenUpdating = False
Dim n As Single
For n = 1 To Sheets.Count
Sheets(n).Protect Password:="justme"
Next n
Application.ScreenUpdating = True
End Sub

Sub UnprotectAllSheets()
Application.ScreenUpdating = False
Dim n As Single
For n = 1 To Sheets.Count
Sheets(n).Unprotect Password:="justme"
Next n
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Tue, 11 May 2010 15:08:01 -0700, DonMark
wrote:

I'm trying to protect an entire workbook so that the forumlae will be hidden
from view. I would rather not protect each individual sheet, using a
password for each sheet. However when I try to use the Protect Workbook I'm
taken to sign up for IRM and I don't know why I must? Is there no way to
protect an entire workbook with one password with out signing up for IRM?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I lock specific cells w/o having to protect entire sheet? J. Becker Excel Worksheet Functions 3 June 28th 09 02:13 AM
Name an Entire Workbook NaBellFL Excel Discussion (Misc queries) 3 November 15th 07 03:49 PM
need to lock 5 cells but not protect entire sheet Lock MY Cells Excel Discussion (Misc queries) 2 September 6th 07 07:14 PM
Protect Workbook Vs Protect Sheet Poor_pakistani New Users to Excel 4 May 25th 06 02:06 PM
how do I protect formula's only, not entire sheet or book? Beginner Excel User Setting up and Configuration of Excel 2 February 16th 06 09:07 PM


All times are GMT +1. The time now is 07:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"