Results 1 to 5 of 5

Using a VBA UDF in an array formula

Threaded View

  1. #1
    Registered User
    Join Date
    08-31-2017
    Location
    Spokane Washington
    MS-Off Ver
    14 and up. All components
    Posts
    4

    Using a VBA UDF in an array formula

    I am trying to use a user defined formula within an array formula and keep getting an error message. I am trying to replicate a formula which returns a covariance matrix in a logistic regression problem. The matrix formula is X'WX where X' is the transpose of X. The X matrix is a matrix of independent variables of dimension n x K where n is the number of observations and k is the number of variables. A very simplified example of the situation is attached which has 3 independent variables in columns A, B, and C. The W matrix is a diagonal matrix of dimension n x n. The diagonal entries of this matrix are the product of three separate column vectors and the off diagonal values are all zeros. I have written a user defined formula to fill the W matrix. The values for the W matrix are in columns D, E, and F. The actual array formula is "=MMULT(TRANSPOSE(A2:C6),MMULT(DIAGONAL(D2:D6,E2:E6,F2:F6),A2:C6))" where DIAGONAL is the user defined function. The code for this function is shown below. The function as written always returns #VALUE in each cell. The subroutine to test the function on the example worksheet is below the function. Note that both of these routines must be in a general VBA module. They cannot be in a spreadsheet module. Any help would be appreciated.

    Public Function Diagonal(rngA As Range, rngB As Range, rngC As Range) As Variant

    Dim TempArray() As Variant
    Dim I, J As Integer
    Dim intN As Integer
    Dim bolEqual
    Dim strA, strB, strC As String
    Dim strD, strE, strF As String


    strA = Split(rngA.Address, "$")(1)
    strB = Split(rngB.Address, "$")(1)
    strC = Split(rngC.Address, "$")(1)
    intN = Split(rngA.Address, "$")(4)

    ReDim TempArray(1 To intN, 1 To intN)

    For I = 1 To intN
    For J = 1 To intN
    If I = J Then
    strF = strC & Format(I + 1)
    TempArray(I, J) = ActiveSheet.Range(strD).Value * ActiveSheet.Range(strE).Value * ActiveSheet.Range(strF).Value
    Else
    TempArray(I, J) = 0#
    End If
    Next J
    Next I
    Diagonal = TempArray

    End Function

    Private Sub TestUDF()


    Dim strFormula As String
    Dim strRange As String

    strRange = "G7:I9"
    strFormula = "=MMULT(TRANSPOSE(A2:C6),MMULT(DIAGONAL(D2:D6,E2:E6,F2:F6),A2:C6))"

    ActiveSheet.Range(strRange).FormulaArray = strFormula


    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Array summing inventory of a specific part (array formula) EXCEL 2007
    By fdirosa in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-07-2018, 12:51 PM
  2. Replies: 3
    Last Post: 04-02-2016, 08:16 PM
  3. Can I make the row lookup array/range part in an array formula variable?
    By OLLY-7 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-18-2014, 09:06 AM
  4. Array formula + Array formula with criteria that lookups a Table
    By anrichards22 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-16-2013, 11:41 AM
  5. Replace hard coded array in formula with link to input array
    By David Brown in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 01-08-2011, 07:45 AM
  6. Converting 3x10 array to a 1X30 array to run a Match formula
    By NBVC in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 04-08-2009, 07:45 AM
  7. Replies: 0
    Last Post: 07-27-2005, 11:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1