+ Reply to Thread
Results 1 to 7 of 7

Can't get variables to pass from one procedure to same in the same module

Hybrid View

  1. #1
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Can't get variables to pass from one procedure to same in the same module

    I haven't really read your code, but as a starter, to pass values, you need parameters (don't use public variables):

    Firstly delete
    Public Ans As String
         Public Sub SaveToLog_Audit()
         
         '  Date entry for proper Dated log save
         Dim Ans As String
         Dim c As Boolean
         Dim fs As Object
         '  Declares path, newFile and fName variables
         Dim path As String, newFile As String, fName As String
    Should be:
         Public Sub SaveToLog_Audit(Ans As String)
         
         '  Date entry for proper Dated log save
         Dim c As Boolean
         Dim fs As Object
         '  Declares path, newFile and fName variables
         Dim path As String, newFile As String, fName As String
    It's then called in the other procedure:
        Call SaveToLog_Audit(Ans)
    Right now your Locally scoped variables are overriding you public, but you shouldn't be using public anyway and passing parameters will remove the issue

  2. #2
    Registered User
    Join Date
    12-10-2014
    Location
    Orion, Michigan
    MS-Off Ver
    2003
    Posts
    3

    Re: Can't get variables to pass from one procedure to same in the same module

    I commented out the Dim Ans in both procedures. I found that Dim Ans in both reset the public variable and caused it to fail. Removing the Dim Ans from both allowed the variable to pass unimpeded. Yay! Problem solved.

  3. #3
    Registered User
    Join Date
    12-10-2014
    Location
    Orion, Michigan
    MS-Off Ver
    2003
    Posts
    3

    Re: Can't get variables to pass from one procedure to same in the same module

    If I declare it the way you suggest, can the procedures then be placed in separate modules again? I prefer to keep each procedure in it's own module when I can. The exception to that is when I generate a UserForm and that code needs to be in the same place for the buttons and check boxes. Do I add the Ans to the () in SaveToLog_Audit name when I declare the sub or just in the call to that Sub?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] How can I call a Module or a sub procedure and run it automatically in current module?
    By qzqzjcjp in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-29-2014, 11:48 AM
  2. [SOLVED] How to use second procedure (the 2nd Sub) results in first procedure in the same module
    By lubbamkt in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-11-2014, 10:17 AM
  3. [SOLVED] Pass date variable to another procedure/module
    By maacmaac in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-20-2013, 10:16 PM
  4. [SOLVED] Pass variables from userform to module
    By Bishonen in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-08-2012, 07:54 AM
  5. Pass variables from Worksheet_Calculate sub to Module
    By John Michl in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-22-2006, 11:15 AM

Tags for this Thread

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