excel vba array basic operations

G

Gabriel

Hello,

I just want to create my own function in vba that involve basic array
operations. I've already implemented them in an excel spreadsheet and
I thought it would be rather straightforward to create the functions
in vba.

For instance, I wanted to test a function that perfoms a difference
between two arrays (3;5) and (1;2). In a worksheet I just select the
next two cells, enter the formula and CTRL-Shift-Enter and voila
(2;3). But when I select the appropiate range and call the following
function, it just doesn't work.

Function diffArray(vector1, vector2) As Variant
diffArray = vector1 - vector2
End Function

Any hint?
Gabriel
 
T

Tom Ogilvy

You have to loop and do the comparison element for element, then store the
results in a third array.

There are no built in Array operations in VBA.
 
A

Alan Beban

You might want to review some of the functions in the freely
downloadable file at http://home.pacbell.net/beban. The following, for
example, will produce the result you are describing:

=ArrayAdd(vector1,vector2,false)

The loops are included in the function.

Alan Beban
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top