Eloise T
Active Member
I have a 20 Mb and growing spreadsheet that takes about 10 minutes to save. I would like a macro that when ran, will simply save the current spreadsheet/workbook and upon completing the "save," will beep or play a tune so that I can visit the lunch room or coffee pot while waiting and listen for the "noise" indicating it's done.
Here's what I've gleaned from the Internet but it beeps virtually instantly....and doesn't update the date and time of the file.
Here's what I've gleaned from the Internet but it beeps virtually instantly....and doesn't update the date and time of the file.
Code:
Sub Save_Workbook()
Dim Wkb As Workbook
Set Wkb = Workbooks.Add
Wkb.Save
'3 BEEPS--------------------------------------------------------------------------------------------
Beep
' Pause a second before engaging the next Beep so they don't run together and sound like only one Beep.
' hrs:mi:secs
Application.Wait Now + TimeValue("0:00:01")
Beep
' Pause a second before engaging the next Beep so they don't run together and sound like only one Beep.
Application.Wait Now + TimeValue("0:00:01")
Beep
End Sub
Last edited: