Thread
:
Help with 1 x 2 array output
View Single Post
#
2
Posted to microsoft.public.excel.programming
NicoB
external usenet poster
Posts: 8
Help with 1 x 2 array output
Your output array should be defined as follows
Dim xymat(0, 1) As Varian
Then
xymat(0, 0) = mean1 + x * sd1
xymat(0, 1) = mean2 + y * sd
An
Range("Left cell address") = xymat
Reply With Quote
NicoB
View Public Profile
Find all posts by NicoB