Results 1 to 13 of 13

CombineTwoArrays Function

Threaded View

  1. #5
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: CombineTwoArrays Function

    to add the values in 2 arrays (ranges) D1:G3 and D7:G9
    Sub snb5()
    [D1:G3].Offset(20) = [index(D1:G3 +D7:G9,)]
    End Sub
    you can use this UDF

    Function snb7(c01 As Range, c02 As Range)
      snb7 = Evaluate("index(" & c01.Address & "+" & c02.Address & ",)")
    End Function
    You will have to enter this UDF as an arrayformula: ctrl-shift-enter

    {=snb7(D1:G3,D7:G9)}
    and autofill the adjacent cells correponding to the range's size
    Last edited by snb; 02-05-2012 at 11:37 AM.



Thread Information

Users Browsing this Thread

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

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