Hi there,
I am contacting you with this first thread.
I have read very carefully following thread.

http://www.excelforum.com/excel-prog...-function.html

It helps me to introduce my question, that I think it is at an upper level.
MY question is as follows.
Let’s suppose to have an array of two dimensions, ex
Arr(a,b)
,
Let’s suppose that I have to call a function, called FunctionA, and to pass the array
According to the post, I would have to call
FunctionA(arr)
My question is: let’s suppose that I want to pass to the FunctionA the sole values of array (a,n) – where n is a number between 1 and b.
How can I pass this to the function.
I was thinking to something as
FunctionA(arr,n)
and
public functionA(arr() as single,index as single)
argument = arr(a,index)
end function

Please, has anybody a different solution for this ?

many thanks