Is there a way the default print Gridlines in Excel? You are able to select under page setup for each document, however, I would like to make this a default. Any suggestions? Thanks, Julie
However, you could record a macro that sets the gridlines and call the macro from the Workbook_BeforePrint event in the VB Editor (alt-F11 -- select the WORKBOOK object in the Project Explorer ctr+R -- paste the following
Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
SetTheGrid
End Sub
Assuming that your macro is named, SetTheGrid
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.