Unable to get MMult property - Error 1004

trough

Board Regular
Joined
Oct 26, 2010
Messages
55
This seems like a simple code but not working. I get Error 1004 "Unable to get the MMult property of the WorksheetFunction class". I tried making the three variables Variant but still doesn't work. Any suggestions?

VBA Code:
Option Explicit
Option Base 1

Sub DoStuff1()

 'Find x in Ax=B

 Dim x() As Double
 Dim B() As Double
 Dim A() As Double
 
 ReDim x(1 To 2)
 ReDim B(1 To 2)
 ReDim A(1 To 2, 1 To 2)
 
 A(1, 1) = 2.5
 A(1, 2) = 6
 A(2, 1) = 4.2
 A(2, 2) = 3.7
 
 B(1) = 50
 B(2) = 75.5

 With Application.WorksheetFunction
  x = .MMult(.MInverse(A), B)
 End With

End Sub
 
Last edited by a moderator:

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
The number of columns in A must be the same size as the number of rows in B. Otherwise, you'll get an error.
 
Upvote 0

Forum statistics

Threads
1,215,014
Messages
6,122,697
Members
449,092
Latest member
snoom82

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