Adding records to VBA Array based on Criteria

heimdaloz

New Member
Joined
Feb 1, 2018
Messages
10
Hi, I am trying to add a row of data for an excel sheet, for Example:

Date, Amount, Description, Statement, Entity

Into an array, where the date is greater than Start Date and less than End Date

The idea is to read a bank statement into an array and then either extract that data based on a date range or insert it into the array based on a date range, into my file.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try this:

VBA Code:
Sub Add_Records_To_Array()
  Dim a As Variant, b As Variant
  Dim i As Long, j As Long, k As Long
  Dim StartDate As Date, EndDate As Date
 
  StartDate = "03/08/2024"
  EndDate = "25/08/2024"
 
  'We store all the data in array 'a', assuming that the data starts in cell A2.
  a = Range("A2:E" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1), 1 To UBound(a, 2))
 
  For i = 1 To UBound(a, 1)
  
    'The data that matches the dates is stored in the array 'b'.
    If a(i, 1) >= StartDate And a(i, 1) <= EndDate Then
      k = k + 1
      For j = 1 To UBound(a, 2)
        b(k, j) = a(i, j)
      Next
    End If
  Next

  'Then you can put the data on the sheet, for example, starting from cell K2:
  Range("K2").Resize(k, UBound(b, 2)).Value = b
End Sub

🧙‍♂️
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,248
Members
452,623
Latest member
cliftonhandyman

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