VBA code workthrough, this way is causing run-time error

cizzett

Board Regular
Joined
Jan 10, 2019
Messages
121
OK so this has been working but now im getting a runtime error when it gets to this code.

Any advice? Greatly appreciated.

Code:
Sub Prep()

    ' Prep Macro
' Hide and prep columns for final save
'
      


    ' Resize and hide columns
    
    Columns("A:A").ColumnWidth = 5
    Columns("M:N").Select
    Selection.EntireColumn.Hidden = True
    Columns("W:X").Hidden = True
    Columns("T:T").ColumnWidth = 50.57




        Range("B3").Select
    ActiveWorkbook.Worksheets("Today").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Today").Sort.SortFields.Add Key:=Range("B3:B62"), _
        SortOn:=xlSortOnValues, Order:=xlAscending, CustomOrder:= _
        "New,Waiting on response,Resolved,Non-Batch", DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Today").Sort
        .SetRange Range("A2:X62")
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
        
' Refresh data tables
    Application.DisplayAlerts = False
        
    
    ' Delete_Buttons Macro
'   This removed the VBA Buttons and hides row 1 on Todays data tab
    ActiveSheet.Shapes.Range(Array("ImportQLTYData")).Select
    Selection.Delete
    ActiveSheet.Shapes.Range(Array("Finalize")).Select
    Selection.Delete
    ActiveSheet.Shapes.Range(Array("EmailPrep")).Select
    Selection.Delete
    ActiveSheet.Shapes.Range(Array("LotWS")).Select
    Selection.Delete
    
    Rows("1:1").Select
    Selection.EntireRow.Hidden = True
    
    ' deletestuff Macro
'
    Sheets("Instruction Sheet").Select
    ActiveWindow.SelectedSheets.Visible = False
         
    Sheets("L.W.S.").Select
    ActiveWindow.SelectedSheets.Visible = False
         
    Sheets("E-mail").Select
    ActiveWindow.SelectedSheets.Visible = False
         
    Sheets("Today").Select
            Application.DisplayAlerts = False
    Range("C3").Select
        ' Filter out blanks on Pivot Tables
    
    Sheets("Pivot").Select
    
    ActiveWorkbook.RefreshAll
    
   ActiveSheet.PivotTables("PivotTable5").PivotFields("Legacy Item #"). _
        ClearAllFilters
    With ActiveSheet.PivotTables("PivotTable5").PivotFields("Legacy Item #")
        .PivotItems("(blank)").Visible = False
    End With
    ActiveSheet.PivotTables("PivotTable1").PivotFields("SOS").ClearAllFilters
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("SOS")
        .PivotItems("").Visible = False
        .PivotItems("(blank)").Visible = False
    End With
    
    ' Go back to Today Sheet
    Sheets("Today").Select
    Range("C3").Select
    ActiveWorkbook.RefreshAll
    
    
    
    End With






End Sub
 
Last edited:

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Ok so I have cleaned this up a bit more and now its working again but I think I need to re-write it with proper variables etc.
Here it is now


Code:
Sub Prep()

 ' Prep Macro
' Hide and prep columns for final save
'
      


    ' Resize and hide columns
    
    Columns("A:A").ColumnWidth = 5
    Columns("M:N").Hidden = True
    Columns("V:X").Hidden = True
    Columns("T:T").ColumnWidth = 50.57




        Range("B3").Select
    Sheets("Today").Sort.SortFields.Clear
    Sheets("Today").Sort.SortFields.Add Key:=Range("B3:B62"), _
        SortOn:=xlSortOnValues, Order:=xlAscending, CustomOrder:= _
        "New,Waiting on response,Resolved,Non-Batch", DataOption:=xlSortNormal
    With Sheets("Today").Sort
        .SetRange Range("A2:X62")
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
        
' Refresh data tables
    Application.DisplayAlerts = False
        
    
    ' Delete_Buttons Macro
'   This removed the VBA Buttons and hides row 1 on Todays data tab
    Sheets("Today").Shapes.Range(Array("ImportQLTYData")).Delete
    Sheets("Today").Shapes.Range(Array("Finalize")).Delete
    Sheets("Today").Shapes.Range(Array("EmailPrep")).Delete
    Sheets("Today").Shapes.Range(Array("LotWS")).Delete
    
    Rows("1:1").Select
    Selection.EntireRow.Hidden = True
    
    ' deletestuff Macro
'
    Sheets("Instruction Sheet").Visible = False
    Sheets("L.W.S.").Visible = False
    Sheets("E-mail").Visible = False
             
             Application.DisplayAlerts = False
        
        ' Filter out blanks on Pivot Tables
    
Sheets("Pivot").Activate
    ActiveWorkbook.RefreshAll
    
   Sheets("Pivot").PivotTables("PivotTable5").PivotFields("Legacy Item #"). _
        ClearAllFilters
    With Sheets("Pivot").PivotTables("PivotTable5").PivotFields("Legacy Item #")
        .PivotItems("(blank)").Visible = False
    End With
    Sheets("Pivot").PivotTables("PivotTable1").PivotFields("SOS").ClearAllFilters
    With Sheets("Pivot").PivotTables("PivotTable1").PivotFields("SOS")
        .PivotItems("").Visible = False
        .PivotItems("(blank)").Visible = False
    End With
    
    ' Go back to Today Sheet
    Sheets("Today").Activate
    Range("C3").Select
    ActiveWorkbook.RefreshAll
    
    
    
    End With








End Sub
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,794
Members
449,468
Latest member
AGreen17

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