I have the Assign Paths to Variable code with in the module, Ive included that below.
I want to move all subs from the UserForm and leave it as a script of Call commands if at all possible.
Sub Assign_Event_Paths(EventMonth As String, EventYear As String)
Dim filepaths(100) As Variant
EventPath = "\\vs1alpfc1\bkcPMU\MIS Reports\Event Report\Results\" & EventYear & "\" & EventMonth & ""
EventBusiness = EventPath & "Bus Event Report " & Format(LendMonth, "mmm") & " " & EventYear & ".xls"
EventPersonal = EventPath & "Personal Event Report " & Format(LendMonth, "mmm") & " " & EventYear & ".xls"
End Sub
Bookmarks