R ranswrt Jul 22, 2008 #1 I have an array that collects data using a userform. How do I pass that array to another userform to use? Thanks
I have an array that collects data using a userform. How do I pass that array to another userform to use? Thanks
J Joel Jul 22, 2008 #2 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)
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)
R ranswrt Jul 22, 2008 #3 Thanks Joel said: 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) Click to expand...
Thanks Joel said: 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) Click to expand...