+ Reply to Thread
Results 1 to 17 of 17

Auto Save Shared Workbook and Update Display

Hybrid View

Logit Auto Save Shared Workbook and... 06-07-2013, 02:42 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-10-2013, 12:02 AM
billstpierre79 Re: Auto Save Shared Workbook... 06-10-2013, 12:36 AM
Logit Re: Auto Save Shared Workbook... 06-10-2013, 12:29 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-10-2013, 02:34 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-10-2013, 02:39 PM
Logit Re: Auto Save Shared Workbook... 06-10-2013, 03:18 PM
Logit Re: Auto Save Shared Workbook... 06-10-2013, 03:31 PM
Logit Re: Auto Save Shared Workbook... 06-10-2013, 07:41 PM
Logit Re: Auto Save Shared Workbook... 06-11-2013, 07:40 AM
Logit Re: Auto Save Shared Workbook... 06-11-2013, 09:11 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-12-2013, 06:10 PM
Logit Re: Auto Save Shared Workbook... 06-12-2013, 07:41 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-12-2013, 07:55 PM
billstpierre79 Re: Auto Save Shared Workbook... 06-12-2013, 11:18 PM
AndyLitch Re: Auto Save Shared Workbook... 06-13-2013, 07:31 AM
dmitrij Re: Auto Save Shared Workbook... 06-02-2014, 02:29 AM
  1. #1
    Registered User
    Join Date
    11-27-2012
    Location
    Alabama
    MS-Off Ver
    Excel 2003
    Posts
    53

    Re: Auto Save Shared Workbook and Update Display

    This might get you started.

    Paste in ThisWorkbook module
    Private Sub Workbook_Open()
    Application.OnTime Now + TimeValue("00:05:00"), "AutoSave"
    End Sub
    Paste in standard module
    Sub AutoSave()
    Application.DisplayAlerts = False
    ThisWorkbook.Save
    Application.DisplayAlerts = True
    
    Application.OnTime Now + TimeValue("00:05:00"), "AutoSave"
    End Sub
    Last edited by billstpierre79; 06-10-2013 at 12:15 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1