Shared Excel 2007 Workbook Print Setting

S

Sheba

How do I set the print range and settings on a shared Excel workbook so other
users cannot change the print settings?
 
K

KC

Sheba,
that is a good question, i never thought about that before, i'm not sure if
there is a setting lock the print range, but i can suggest a workaround...
why don't you write a macro and password protect the VBA.

Private Sub Workbook_BeforePrint(Cancel As Boolean)

Sheets("Sheet1").PageSetup.PrintArea = "A1:D25"

End Sub

hope this helps?
-kc
*click YES if this helps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top