VBA: Pass Args back to Sub from PVT Sub

zero269

Active Member
Joined
Jan 16, 2023
Messages
250
Office Version
  1. 365
Platform
  1. Windows
Hello,

I'm having some trouble figuring out how to get a Private Sub to return the values it processed received from a Public Sub. Everything works fine when the Subs are NOT Private Subs.

NOTE: I'm trying to avoid placing them all in a single module. I'm doing that already for one Sub - this is my first time creating something like this - and the below Sub is a 2nd one in progress. It serves a different purpose, but building the Message for the InputBox and Validating the choices are similar.

Running the code as shown below works when the Sub's in module 'mod_PVT' are 'Public' and not set as 'Private'.
Any help with getting the Sub's from mod_PVT to return their arguments as if they were public would be greatly appreciated.

Module Name: mod_SUB
VBA Code:
Option Explicit
'Filter Books to Check In
Sub Books_Check_In()

    'Declarations
    Dim arrList As Variant, Message As Variant, LastChoice As Integer
    
    'Array of Student Names
    arrList = wsLists.Range("t_Students[Full Name]").Value
    
    'Get Message Box
'    Run "mod_PVT.MsgBox_Builder", arrList, Message
    Call MsgBox_Builder(arrList, Message)
    
    'Append Last Choice to Message
    LastChoice = UBound(arrList, 1) + 1
    Message = Message & LastChoice & vbTab & "Clear & Reset Table" 'Append option to reset table
    
    'Input Box
    Dim Titlebar As String: Titlebar = "Manage Check In's for..."
    Dim Choice As Integer: Choice = InputBox(Message, Titlebar)
    
    'Verify Choice
    Dim Response As Boolean 'Default is False
'    Run "mod_PVT.Validate_Choice", Choice, LastChoice, arrList, Response
    Call Validate_Choice(Choice, LastChoice, arrList, Response)

    'Validate Response
    If Response = False Then 'Exit Sub
        MsgBox "That Sucks!"
    Else
        MsgBox "Yay, it works!"
    End If
    
End Sub


Module Name: mod_PVT
VBA Code:
Option Explicit
'Build MsgBox from an Array List
Private Sub MsgBox_Builder(arrList As Variant, Message As Variant)
    Dim NewLine As String, i As Long
    For i = LBound(arrList, 1) To UBound(arrList, 1)
        NewLine = i & vbTab & arrList(i, 1) & vbNewLine
        Message = Message + NewLine
    Next i
End Sub

'Validate Choice
Private Sub Validate_Choice(Choice As Integer, LastChoice As Integer, arrList As Variant, Response As Boolean)
    If Choice >= 1 And Choice <= LastChoice - 1 Then 'If Valid Entry
        arrList = arrList(Choice, 1)  'Store Student Name in arrList
        arrList = Array(arrList)      'Convert single Student to Array
        Response = True
    ElseIf Choice = LastChoice Then  'If Choice = last entry for 'All Names'
        Response = True
    Else 'If Invalid Entry
        Dim YNAnswer As Integer: YNAnswer = MsgBox("Invalid entry. Try again?", vbYesNo)
            If YNAnswer = vbYes Then
                MsgBox "Trying again..."
                Call Books_Check_In
            Else
                Exit Sub
            End If 'YNAnswer = vbNo
        Exit Sub
    End If 'Invalid entry
End Sub

Sample Data used to build out the Array List of Student Names:

VBA Testing.xlsm
ABCD
1IDFirst NameLast NameFull Name
265MartyCortezMarty, Cortez
334DellaWhalenDella, Whalen
460DianneStephensDianne, Stephens
595EnriqueAtkinsEnrique, Atkins
687ByronKellerByron, Keller
781KatrinaMossKatrina, Moss
886DwayneMurryDwayne, Murry
984KathyKramerKathy, Kramer
1074TeriVazquezTeri, Vazquez
1167SarahFarrellSarah, Farrell
1238WesRoweWes, Rowe
1381GeraldShafferGerald, Shaffer
1437JoannaGrantJoanna, Grant
1552BarbaraColeBarbara, Cole
1692DenaManningDena, Manning
1793CaryPughCary, Pugh
1876JanineHaysJanine, Hays
1949DeboraBeasleyDebora, Beasley
2074KendraRobersonKendra, Roberson
2156CoraCrawfordCora, Crawford
Lists
Cell Formulas
RangeFormula
D2:D21D2=TEXTJOIN(", ",TRUE,B2:C2)
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
If those subs are private, you can't Call them from the other module, so your issue is nothing to do with arguments. Why do you want them to be private when you clearly need them accessible from other modules?
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top