I have 10 rows of data in column A.
I can calculate the upper quartile as follows:
Dim MyArray() As Variant
MyArray() = Cells(1, 1).CurrentRegion.Value
Dim UQ As Double
UQ = Application.WorksheetFunction.Quartile_Exc(MyArray(), 3)
If instead of using an array, I choose to use a...