i wrote a custom function earlier as follows
function mycustom(stra,strb)
dim c
c=stra*strb
mycustom=c
end function
in sheet when i used this as =mycustom(A1,D1) i used to get a value..
but now am returning an array as the output from my function as follows
function mycustom(stra,strb)
dim c
c=array("1","2","3")
mycustom=c
end function
in sheet when i used this as =mycustom(A1,D1) am not getting the required result
can any one help me on this..
Regards
Kalyan
function mycustom(stra,strb)
dim c
c=stra*strb
mycustom=c
end function
in sheet when i used this as =mycustom(A1,D1) i used to get a value..
but now am returning an array as the output from my function as follows
function mycustom(stra,strb)
dim c
c=array("1","2","3")
mycustom=c
end function
in sheet when i used this as =mycustom(A1,D1) am not getting the required result
can any one help me on this..
Regards
Kalyan