Hi,
how do I append an item to an array without knowing how many to add to ahead of time? I created a generic example to illustrate.
Public Sub Add2Arr()
Set sht = ThisWorkbook.Worksheets("Sheet1")
lastRow = sht.Cells(sht.Rows.Count, "A").End(xlUp).Row
Dim maxArr() As Variant
For i =...