Ade has attended:
Project Intro Intermediate course
Visio Introduction course
Visio Advanced course
Excel Intermediate course
PowerPoint Intermediate Advanced course
Formating Excel Sheet
What can I do to allow users to view Excel sheet but not print the Excel sheet?
RE: Formating Excel Sheet
You can use a macro to do this. Press Alt & F11 to open the VBA for Excel editor. Double-click on ThisWorkbook in the left-hand panel. In the right-hand panel enter:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Cancel = True
End Sub
Click on save icon and try and print now...