I call the sub, but I never get back to the original sub. Perhaps I am not declaring properly.
' Both resides in the general window.
Dim RosterFileName As Variant
Sub update_trackingFile()
' Routing to take responses from a google form's spreadsheet and
' update the tracking file to make active player. It will also email a response to
' the requester's email
Call OfferRosterFile
Debug.Print RosterFileName
End Sub
---------------------------------------------------------------------------------------------------------------
Sub OfferRosterFile()
'
' Offers Files will present roster files to use with this response
.
My code
.
End Sub ' just goes back to Sub OfferRosterFile()
' Both resides in the general window.
Dim RosterFileName As Variant
Sub update_trackingFile()
' Routing to take responses from a google form's spreadsheet and
' update the tracking file to make active player. It will also email a response to
' the requester's email
Call OfferRosterFile
Debug.Print RosterFileName
End Sub
---------------------------------------------------------------------------------------------------------------
Sub OfferRosterFile()
'
' Offers Files will present roster files to use with this response
.
My code
.
End Sub ' just goes back to Sub OfferRosterFile()