FORMULA MATRICIAL

Joined
May 22, 2006
Messages
0
Prezado(s):
Gostaria que o codigo na sua ultima linha produzisse uma formula matricial.

Sub MatrizMult()
Dim MyArray As Variant, MyArray2 As Variant
Dim MyTranspose As Variant
Dim MyArrayF As Variant
Dim MyTransposeF As Variant
Dim iCol As Integer, iRow As Integer

Set MyArray = Range("f3").CurrentRegion
Set MyArray = MyArray.Offset(1, 0).Resize(MyArray.Rows.Count - 1, MyArray.Columns.Count)
MyTranspose = WorksheetFunction.Transpose(MyArray)
MyTranspose = WorksheetFunction.MInverse(WorksheetFunction.MMult(MyTranspose, MyArray))
Set MyArray = Range("M15:O15")
MyArray2 = WorksheetFunction.Transpose(MyArray)

'**** a proxima linha deve ser gerada em formula matricial
Range("N24") = WorksheetFunction.MMult(WorksheetFunction.MMult(MyArray, MyTranspose), MyArray2)

end sub

Grato,
Ricardo
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,223,956
Messages
6,175,614
Members
452,661
Latest member
Nonhle

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top