EliseFreedman
Programmer
Hi All
I have a reporting dashboard which users can use to filter data on a report at runtime. The filters are on one sheet and the code uses those filters to filter data on another sheet. 9 times out of 10 the filter works perfectly but occassionally, we get the following error
Object Variable or with block variable not set
The line My_Range.Parent.AutoFilter.Range.Copy is highlighted in yellow
Does anyone know why we would get this error and what I can do to resolve it. The strange thing is that it is just happening intermittently
I have a reporting dashboard which users can use to filter data on a report at runtime. The filters are on one sheet and the code uses those filters to filter data on another sheet. 9 times out of 10 the filter works perfectly but occassionally, we get the following error
Object Variable or with block variable not set
The line My_Range.Parent.AutoFilter.Range.Copy is highlighted in yellow
Does anyone know why we would get this error and what I can do to resolve it. The strange thing is that it is just happening intermittently
Code:
Sub Copy_With_AutoFilter1()
'Note: This macro use the function LastRow
Dim My_Range As Range
Dim CalcMode As Long
Dim ViewMode As Long
Dim FilterCriteria As String
Dim CCount As Long
Dim wsNew As Worksheet
Dim sheetName As String
Dim rng As Range
Dim Criteria As String
Dim Criteria1 As String
Dim Criteria2 As String
Dim Criteria3 As String
Dim Criteria4 As String
Dim CheckBox11 As Shape
Dim CheckBox17 As Shape
Dim CheckBox3 As Shape
Dim CheckBox33 As Shape
Dim wsheet As Worksheet
For Each wsheet In Worksheets
wsheet.Select
ActiveSheet.Unprotect Password:="HealthyWorking"
Next wsheet
Sheets("FILTER").Select
Criteria1 = ActiveSheet.Range("H4") 'Function
Criteria2 = ActiveSheet.Range("H6") 'Site
Criteria3 = ActiveSheet.Range("H11") 'Compliance Status
'Set filter range on ActiveSheet: A11 is the top left cell of your filter range
'and the header of the first column, D is the last column in the filter range.
'You can also add the sheet name to the code like this :
'Worksheets("Sheet1").Range("A11:D" & LastRow(Worksheets("Sheet1")))
'No need that the sheet is active then when you run the macro when you use this.
Sheets("REPORT_DSETraining").Select
Set My_Range = Range("A1:N" & LastRow(ActiveSheet))
My_Range.Parent.Select
If ActiveWorkbook.ProtectStructure = True Or _
My_Range.Parent.ProtectContents = True Then
MsgBox "Sorry, not working when the workbook or worksheet is protected", _
vbOKOnly, "Copy to new worksheet"
Exit Sub
End If
'Change ScreenUpdating, Calculation, EnableEvents, ....
With Application
CalcMode = .Calculation
' .Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
End With
ViewMode = ActiveWindow.View
ActiveWindow.View = xlNormalView
ActiveSheet.DisplayPageBreaks = False
'Firstly, remove the AutoFilter
My_Range.Parent.AutoFilterMode = False
'Filter and set the filter field and the filter criteria :
'This example filter on the first column in the range (change the field if needed)
'In this case the range starts in A so Field 1 is column A, 2 = column B, ......
'Use "<>Netherlands" as criteria if you want the opposite
'My_Range.AutoFilter Field:=1, Criteria1:="=Netherlands"
'If you want to filter on a cell value you can use this, use "<>" for the opposite
'This example uses the activecell value
'My_Range.AutoFilter Field:=1, Criteria1:="=" & ActiveCell.Value
'This will use the cell value from A2 as criteria
'Function
Set CheckBox3 = Sheets("FILTER").Shapes("Check Box 3") 'Change the CheckBox number you want to check
If CheckBox3.OLEFormat.Object.Value = 1 Then
My_Range.AutoFilter Field:=4, Criteria1:="=" & Criteria1
End If
'Site
Set CheckBox17 = Sheets("FILTER").Shapes("Check Box 17") 'Change the CheckBox number you want to check
If CheckBox17.OLEFormat.Object.Value = 1 Then
My_Range.AutoFilter Field:=5, Criteria1:="=" & Criteria2
End If
'Compliance Status
Set CheckBox33 = Sheets("FILTER").Shapes("Check Box 33") 'Change the CheckBox number you want to check
If CheckBox33.OLEFormat.Object.Value = 1 Then
My_Range.AutoFilter Field:=7, Criteria1:="=" & Criteria3
End If
''If you want to filter on a Inputbox value use this
'FilterCriteria = InputBox("What text do you want to filter on?", _
' "Enter the filter item.")
'My_Range.AutoFilter Field:=1, Criteria1:="=" & FilterCriteria
'Check if there are not more then 8192 areas(limit of areas that Excel can copy)
CCount = 0
On Error Resume Next
CCount = My_Range.Columns(1).SpecialCells(xlCellTypeVisible).Areas(1).Cells.Count
On Error GoTo 0
If CCount = 0 Then
MsgBox "There are more than 8192 areas:" _
& vbNewLine & "It is not possible to copy the visible data." _
& vbNewLine & "Tip: Sort your data before you use this macro.", _
vbOKOnly, "Copy to worksheet"
Else
Dim wbNew As Workbook
'add new workbook
Set wbNew = Workbooks.Add
wbNew.Activate
Set wsNew = wbNew.Worksheets(1)
wsNew.Name = "DSE Status Report"
'Copy/paste the visible data to the new worksheet
My_Range.Parent.AutoFilter.Range.Copy
With wsNew.Range("A1")
' Paste:=8 will copy the columnwidth in Excel 2000 and higher
' Remove this line if you use Excel 97
.PasteSpecial Paste:=8
.PasteSpecial xlPasteValues
.PasteSpecial xlPasteFormats
Application.CutCopyMode = False
wbNew.Activate
wsNew.Activate
.Select
End With
wbNew.SaveAs "H:\DSEStatusReport" & ".xls"
Call Macro9
Windows("ReportDashboard.xlsm").Activate
For Each wsheet In Worksheets
wsheet.Select
ActiveSheet.Protect Password:="HealthyWorking"
Next wsheet
wbNew.Sheets("DSE Status Report").Activate
End If
End Sub