In excel Im using the following array formula in cells D13:D15 {=MMULT(B8:D10,B13:B15)*B13:B15}, and i want to be able to replicate with VBA.
So far i think i have been able to get the first part ok with: Cont = Application.WorksheetFunction.MMult(Range1, Range2)
How do i then multiple this range by Range2, where the multiplication is done element wise?
Thanks
So far i think i have been able to get the first part ok with: Cont = Application.WorksheetFunction.MMult(Range1, Range2)
How do i then multiple this range by Range2, where the multiplication is done element wise?
Thanks