View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
NicoB NicoB is offline
external usenet poster
 
Posts: 8
Default 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