I have written a UDF which returns an array and want to display all of those values using an array formula on my sheet.
The UDF is:
Function GetDutyDetails(Rng As Range) As Variant
Dim ArraySize As Integer
ArraySize = Worksheets("ATCO").Range("atco_non_operational_duties").Rows.count
Dim...