I want to set up an array but as a precursor to setting the bounds of the array I want to count the amount of variables in the H column.
This is what I have so far.
This is what I have so far.
Code:
Sub DefineArray()
Dim LR As Long
Dim LowValue As Double
LR = ActiveSheet.UsedRange.Rows.Count
LowValue = Application.WorksheetFunction.CountA(Range("H2:H & LR"))
End Sub