I've got some VBA code that populates an array with different formulas as text. The array is then written to a table.
For i = 1 To UBound(array1)
array1(i, 2) = "=INDEX(tblMCC_4[In],MATCH([@Med],tblMCC_4[Med],0))"
array1(i, 3) = ""
array1(i, 4) = ""...