How to print only selected areas from an order sheet I created.

S

Steve2k67

I created an Order sheet of Our warehouse for a Vending Company. The Order
sheet lists all products and each route uses this sheet to request daily
product. I would like to create a print-out of just the product that is
requested (greater than a 0) so that I can use the print-out as sort of a
"pull sheet" to fulfill the order request. It would make reading and filling
the order so much easier if the products not checked could be omitted when
printing... I hope I made this understandable.
Thank You
 
D

David

=?Utf-8?B?U3RldmUyazY3?= wrote
I created an Order sheet of Our warehouse for a Vending Company. The
Order sheet lists all products and each route uses this sheet to
request daily product. I would like to create a print-out of just the
product that is requested (greater than a 0) so that I can use the
print-out as sort of a "pull sheet" to fulfill the order request. It
would make reading and filling the order so much easier if the
products not checked could be omitted when printing... I hope I made
this understandable.
Thank You

I accomplished this by assigning this macro to a button on my sheet:
Sub PrintIt()
Columns("A").AutoFilter Field:=1, Criteria1:="<>"
ActiveSheet.PrintOut
Columns("A").AutoFilter
End Sub
 

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

Top