I have probably got this all wrong.
This Macro runs in Excel.
It allows me to save the file.
But it will not work for another other use who has access to this file.
I know it is down to the Users\David.Murray, what I need is to able to amend The Path Variable
Sub Create_TimeSlot_View()' This copies and sorts the DATA from FSC.XLSM to from the Daily FSC, which is sent out each day.
Application.DisplayAlerts = False
Application.ScreenUpdating = False
Columns("L:KO").Select
Selection.EntireColumn.Hidden = True
If ActiveSheet.AutoFilterMode Then Cells.AutoFilter
Dim Year1 As Integer
Year1 = DatePart("yyyy", Date)
Month1 = DatePart("M", Date)
Day1 = DatePart("D", Date)
CurrentDate = Day1 & "-" & Month1 & "-" & Year1
ChDir "C:\Users\david.murray\PERFORM GROUP\Change and Release Management - Change Management\FSC Backup"
ActiveWorkbook.SaveAs Filename:= _
"C:\Users\david.murray\PERFORM GROUP\Change and Release Management - Change Management\FSC Backup\FSC " & CurrentDate & ".xlsm"
ChDir "C:\Users\david.murray\PERFORM GROUP\Change and Release Management - Change Management\FSC"
ActiveWorkbook.SaveAs Filename:= _
"C:\Users\david.murray\PERFORM GROUP\Change and Relea