RJSIGKITS
Board Regular
- Joined
- Apr 15, 2013
- Messages
- 109
Hi Guys.
I Have a sheet ("Quote") that I need to add a CommandButton to to print out a range that I have set as a print area.
The sheet itself will have numerous named ranges that need to print independently of each other according to what is needed.
So, at this time all I need to know is:
I have a Print Area Defined called "QuotePrint"
I Have a "CommandButton3"
I want to click the button, and it print only the defined "QuotePrint" area.
What should I change this to to do this, please?
I will then need to have another button on a different sheet ("Home") to print off another range from the same "Quote" sheet that will print off a "SupplierOrderLog_Print" named range from the "Quote" sheet...
Any help comes with bucket loads of gratitude!
I Have a sheet ("Quote") that I need to add a CommandButton to to print out a range that I have set as a print area.
The sheet itself will have numerous named ranges that need to print independently of each other according to what is needed.
So, at this time all I need to know is:
I have a Print Area Defined called "QuotePrint"
I Have a "CommandButton3"
I want to click the button, and it print only the defined "QuotePrint" area.
What should I change this to to do this, please?
Code:
Private Sub CommandButton3_Click()ThisWorkbook.Sheets("Quote").PrintPreview
End Sub
I will then need to have another button on a different sheet ("Home") to print off another range from the same "Quote" sheet that will print off a "SupplierOrderLog_Print" named range from the "Quote" sheet...
Any help comes with bucket loads of gratitude!