Macro help with sorting & printing

Paul at GTS

Board Regular
Joined
May 17, 2004
Messages
56
Office Version
  1. 365
Platform
  1. Windows
Hi

I have a worksheet with 60 Columns. Col A contains product groups. Working across the sheet all subsequent cols on row1 have customer name and then running down the col various discounts that customer receives for the different product groups. The cols contain some blanks as not all customers get all discounts.

So What I am trying to do - and can do manually is :

1. Sort each customers discount to remove all blank cells - This I have been doing with the Filter - Do not show blanks
2. Print col A Product groups with subsequent customer discounts - this I have been doing by selectin A + B cols, setting print area and printing - All good
3. From col just sorted - re select all - so blanks are again shown
4. Hide customer col just sorted
5. Go to next customer col and repeat from set 1

It all works fine when I do it manually but when recording macro it never prints the cols as I progress across the sheet. My lack of VB knowledge stops me from sorting it.

Here is a print of the recorded macro

Sub CDP_1()
'
' CDP_1 Macro
'
' Keyboard Shortcut: Ctrl+p
'
ActiveSheet.Range("$A$1:$BH$159").AutoFilter Field:=2, Criteria1:="<>"
ActiveCell.Columns("A:B").EntireColumn.Select
ActiveSheet.PageSetup.PrintArea = "$A:$B"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
ActiveSheet.Range("$A$1:$BH$159").AutoFilter Field:=2
ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
Selection.EntireColumn.Hidden = True
ActiveCell.Offset(0, -1).Range("A1").Select
ActiveSheet.PageSetup.PrintArea = ""
End Sub

Any ideas ?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try
Code:
Sub CDP_1()
'
' CDP_1 Macro
'
' Keyboard Shortcut: Ctrl+p

    Dim UsdCols As Long
    Dim Cnt As Long
    
    UsdCols = Cells(1, Columns.Count).End(xlToLeft).Column
    For Cnt = 2 To UsdCols
        ActiveSheet.Range("$A$1:$BH$159").AutoFilter Field:=Cnt, Criteria1:="<>"
        ActiveSheet.PageSetup.PrintArea = Range(Cells(1, 1), Cells(1, Cnt)).EntireColumn.Address
        ActiveWindow.SelectedSheets.PrintOut Copies:=1
        ActiveSheet.ShowAllData
        Columns(Cnt).Hidden = True
    Next Cnt
    ActiveSheet.PageSetup.PrintArea = ""
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,079
Members
449,205
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top