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 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
Bookmarks