![]() |
protect from printing
how can I protect an excel sheet from being printed. I want others to view
but not to print. Thank you for your help |
If your users can view the sheet, they'll be able to print. You can
disable the Workbook_BeforePrint command: Put this in the ThisWorkbook code module of your workbook: Private Sub Workbook_BeforePrint(Cancel As Boolean) Cancel = True End Sub However, starting up with macros disabled will defeat this. So will copying and pasting the sheet. And macro security is easily bypassed in any case. If you and your users are on a 2003 Server network, I believe you can use IRM to prevent others from printing. I don't think it prevents the user from taking a screenshot and printing that. In article , "scott" wrote: how can I protect an excel sheet from being printed. I want others to view but not to print. |
All times are GMT +1. The time now is 06:23 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com