If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I am looking for a macro that will print... then put up a message and pause... so we can turn the paper over (to print the back) then I hit OK and it prints!!
Sub PrintMe()
Range("A1:C6").PrintOut
MsgBox "Please click OK AFTER you've turned the paper over", _
vbOKOnly + vbInformation, "Print Back Page"
Range("A10:C20").PrintOut
End Sub