how to remove print option in a particular excel file

  • Thread starter Thread starter Guest
  • Start date Start date
You can do this
Copy this event in the Thisworkbook module

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Cancel = True
End Sub

If you want to remove the print icon post back
 

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

Back
Top