View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Harlan Grove Harlan Grove is offline
external usenet poster
 
Posts: 66
Default Calling Excel array functions in VBA

"Dana DeLouis" wrote...
Just a slightly different way from Tom's using Excel XP.

Dim v As Variant
v = [Transpose(Transpose(SMALL(A1:A10,{1,2,3})))]

....

And the advantage of two TRANSPOSE calls vs one INDEX call is?