FIlter by # of days using VBA

Damian37

Active Member
Joined
Jun 9, 2014
Messages
301
Office Version
  1. 365
Hello,
I'm attempting to update my autofilter criteria from one month to seven days, however, I'm receiving a run-time error '9': subscript out of Range. The line of code that is being highlighted as the cause of the error is: "ReDim RowList(1 To NbRows)". The code appears to be working until it gets to the section to randomly select 10% of the data population. A new sheet is created, and the headers are copied over, but when the code has to randomly select, copy, and paste data, this is where the code breaks. I would really appreciate any suggestions as to what might be causing this would be greatly appreciated. Here's the code I currently have:
VBA Code:
Sub Filter_by_Week()

' Filter_by_week_Macro

    Dim todayDate As Date
    Dim sevenDaysAgo As Date
    todayDate = Date
    sevenDaysAgo = DateAdd("d", -7, todayDate)
    
    Sheets("FILENAME").Range("A:M").AutoFilter Field:=7, Criteria1:=">=sevenDaysAgo", _
    Operator:=xlAnd, Criteria2:="<=todaydate"

'Sub CreateSheet()

Application.DisplayAlerts = False
 
  On Error Resume Next
  Sheets("Sheet1").Delete
  On Error GoTo 0
  Sheets.Add After:=Sheets(Sheets.Count)
  ActiveSheet.Name = "Sheet1"
 
'Sub Copy_Header()

Application.ScreenUpdating = False
Dim h As Long

    For h = 2 To Sheets.Count
        Sheets("FILENAME").Rows(1).Copy Destination:=Sheets("Sheet1").Rows(1)
    Next
Sheets("Sheet1").Cells(1, 1).Select
Application.CutCopyMode = False
Application.ScreenUpdating = True

'Sub Copy()
Dim LastRow As Long
Dim NbRows As Long
Dim RowList()
Dim i As Long, J As Long, k As Long
Dim RowNb As Long
Dim s As String
Sheets("FILENAME").Activate


Application.ScreenUpdating = False
For i = 1 To Range("A" & Rows.Count).End(xlUp).Row
    s = i & ":" & i
    If IsEmpty(Cells(i, 1).Value) Then
         Rows(s).EntireRow.Hidden = False
    End If
Next
Application.ScreenUpdating = True
    
    
    Sheets("FILENAME").Activate
    
    LastRow = Range("A" & Rows.Count).End(xlUp).Row
    NbRows = LastRow * 0.1


    ReDim RowList(1 To NbRows)


    k = 2
    For i = 1 To NbRows
        RowNb = Rnd() * LastRow
        Rows(RowNb).Copy Destination:=Sheets("Sheet1").Cells(k, "A")
        k = k + 1
NextStep:
    Next i
End Sub
I've spaced out the line of code that is failing within the code section, as well as written it above in bold and italics.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
The error may be due to having a 0 in the NbRows variable.
When the error appears, press the debug button, bring the mouse pointer closer to the NbRows variable and verify the number that appears or open the Locals Window and verify the value in said variable.
1700157665285.png

1700157170420.png



If it is zero, perhaps there are no dates for that period.
I did a test and if there are dates in that period, then I have no error on that line.


Try:
Change this line:
VBA Code:
LastRow = Range("A" & Rows.Count).End(xlUp).Row


For this:
Rich (BB code):
LastRow = Range("G" & Rows.Count).End(xlUp).Row
"G" is the column where you have the dates.

----- --
I hope to hear from you soon.
Respectfully
Dante Amor
----- --
 
Upvote 0
The error may be due to having a 0 in the NbRows variable.
When the error appears, press the debug button, bring the mouse pointer closer to the NbRows variable and verify the number that appears or open the Locals Window and verify the value in said variable.




If it is zero, perhaps there are no dates for that period.
I did a test and if there are dates in that period, then I have no error on that line.


Try:
Change this line:
VBA Code:
LastRow = Range("A" & Rows.Count).End(xlUp).Row


For this:
Rich (BB code):
LastRow = Range("G" & Rows.Count).End(xlUp).Row
"G" is the column where you have the dates.

----- --
I hope to hear from you soon.
Respectfully
Dante Amor
----- --
Hi Dante,
I tried to change the code as you suggested, but I'm still receiving the same error.

D.
 
Upvote 0
When the error appears, press the debug button, bring the mouse pointer closer to the NbRows variable and verify the number that appears or open the Locals Window and verify the value in said variable.
Did you check that? 👆


You could upload a copy of your file to a free site such www.dropbox.com or google drive. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
 
Upvote 0
Did you check that? 👆


You could upload a copy of your file to a free site such www.dropbox.com or google drive. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
Yes, and when I hovered over it, the number that appeared is 0.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

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