+ Reply to Thread
Results 1 to 4 of 4

Passing variables between subs?

  1. #1
    Forum Contributor
    Join Date
    03-13-2009
    Location
    New Jersey
    MS-Off Ver
    Excel 2007
    Posts
    136

    Passing variables between subs?

    Good Afternoon,

    I think I am confused as to how to declare a variable in one sub and use it as an input into another sub. I have attached some code below that assigns a value to two variables and then calls a sub that uses those values. I am brand new to programming so I guess I am confused how to implement this. Any help would be appreciated.

    Please Login or Register  to view this content.
    Last edited by jerseyguy1996; 11-04-2009 at 11:59 AM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Passing variables between subs?

    I reorganized your code somewhat and corrected the Call, but have no way to test it.
    Please Login or Register  to view this content.
    A significant change is this: You compute a value using NormInv(Rnd() ..., test whether the result is <0, and then store either zero or the computed value -- except you actually compute the value again with a new random number, which will give a different result. I cached the orginal result in dTemp and tested that.

    Also, VBA will repeat the same sequence of random numbers after a reset (that's a deliberate and useful behavior). When you're done testing your code, you'll want to add the statement Randomize as the first line to keep this from happening.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Contributor
    Join Date
    03-13-2009
    Location
    New Jersey
    MS-Off Ver
    Excel 2007
    Posts
    136

    Re: Passing variables between subs?

    Excellent!!! Fixing the call worked perfectly. And thank you so much for cleaning up the rest of the code. I haven't figured out all of the short hand ways to write this stuff so my code is probably about 10 times longer (and slower) than it needs to be.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Passing variables between subs?

    You're welcome. Would you please mark teh thread as Solved?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1