Hi,
I had been trying different codes posted for auto saving, somehow this is the only code I get to make work with minor tweaks. It saves filename as "Title" + range in Cell (Time tweaked as text). However, It still does not meet 2 requirements.
1. Auto save every 15 minutes (Priority)
2. Show Filename box before save (Less important as this could somehow help as reminder).
Sub SaveWorkbook()Dim SvName As String
SvName = "LiveAudit" & " " & Sheets("Live Audit Dashboard").Range("AA1")
Application.Dialogs(xlDialogSaveAs).Show SvName
End Sub
Thanks
I had been trying different codes posted for auto saving, somehow this is the only code I get to make work with minor tweaks. It saves filename as "Title" + range in Cell (Time tweaked as text). However, It still does not meet 2 requirements.
1. Auto save every 15 minutes (Priority)
2. Show Filename box before save (Less important as this could somehow help as reminder).
Sub SaveWorkbook()Dim SvName As String
SvName = "LiveAudit" & " " & Sheets("Live Audit Dashboard").Range("AA1")
Application.Dialogs(xlDialogSaveAs).Show SvName
End Sub
Thanks