In General,
Assuming that the range has 5 columns and the Quantity field is in the 5th
Column, you can use the following macro:

Sub PrintSel()
'
' PrintSel Macro
'
' Keyboard Shortcut: Ctrl+Shift+P
'
    ActiveSheet.Range("$A$1:$E$17").AutoFilter Field:=5, Criteria1:=">0", _
        Operator:=xlAnd
    Range("A1:E17").Select
    Range("A17").Activate
    Selection.SpecialCells(xlCellTypeVisible).Select
    ExecuteExcel4Macro "PRINT(1,,,1,,,,,,,,1,,,TRUE,,FALSE)"
    Range("F21").Select
End Sub

On Fri, Jul 3, 2009 at 4:43 PM, Aindril De <aind...@gmail.com> wrote:

> Hi Louis,
>
> Can you send the sample file so that I can prepare the macro as per your
> sheet.
>
> Regards,
> Andy
>
>   On Fri, Jul 3, 2009 at 2:46 PM, loconel <icefa...@gmail.com> wrote:
>
>>
>> I am new to VBA and do want to make viewing and printing a selection
>> of lines in an order sheet easy.
>>
>> In the order sheet (400 lines of products) customers can indicate what
>> the want to buy by changing the quantity in column QTY
>> I want to present them a shortened list for all the products with
>> quantity  > 0 by running a vba macro and make it possible to print
>> this shortened list.
>>
>> Can you show me the way?
>>
>> Regards, Louis
>> www.wereldwinkelapeldoorn.nl (Dutch)
>>
>>
>> >>
>>
>

--~--~---------~--~----~------------~-------~--~----~
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 5,000 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe
-~----------~----~----~----~------~----~------~--~---

Reply via email to