Thread: passing data
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
ranswrt ranswrt is offline
external usenet poster
 
Posts: 191
Default passing data

Thanks

"Joel" wrote:

You userform is private

You need to delcare the array outside the sub as public. Remove any
declarations inside your subs where the array is being used.

Public abc(10)



"ranswrt" wrote:

I have an array that collects data using a userform. How do I pass that
array to another userform to use?
Thanks