+ Reply to Thread
Results 1 to 3 of 3

Macro to autosave not working correctly

Hybrid View

  1. #1
    Registered User
    Join Date
    04-05-2016
    Location
    Raigarh
    MS-Off Ver
    2007
    Posts
    2

    Macro to autosave not working correctly

    Public Wb As Workbook
    Public RunWhen As Date
    Public RunWhat As String
    Public Executed As Boolean

    Sub GetSavesStarted()
    Set Wb = ThisWorkbook
    RunWhat = "SaveThis"
    Executed = True
    Call SaveThis
    End Sub

    Sub SaveThis()
    Application.DisplayAlerts = False
    Wb.Save
    Application.DisplayAlerts = True
    RunWhen = Now + TimeValue("00:04:00")
    Application.OnTime RunWhen, RunWhat
    End Sub

    Private Sub WorkBook_BeforeClose(Cancel As Boolean)

    If Executed = True Then Application.OnTime EarliestTime:=RunWhen, Procedure:=RunWhat, _
    Schedule:=False

    End Sub


    I am using this macro but , after some time Save as menu pops up, which is not required. So please help me.I want to Auto saving same excel file every 30 sec.

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Macro to autosave not working correctly

    Tested your code and it's working fine for me without any issues


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Registered User
    Join Date
    04-05-2016
    Location
    Raigarh
    MS-Off Ver
    2007
    Posts
    2

    Re: Macro to autosave not working correctly

    Yeah ! It worked but there is an issue,
    I have a live excel file which is constantly updating and in interval of 30 sec I have to save the same file to upload the data to mysql. So need to run a macro for autosaving but this macro sometimes malfunctions and creates another file and renames it. So this is the issue , would suggest any other macro or add in for excel 2007/2010.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Autosave Macro not working in certain workbooks
    By njohnn in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-16-2015, 06:12 AM
  2. Macro to format not working correctly...
    By misterGwhizz in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-13-2012, 12:15 PM
  3. Macro not working correctly
    By erict in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-30-2010, 10:11 AM
  4. IF Macro not working correctly
    By markrennolds in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-14-2010, 03:22 PM
  5. Macro not working correctly
    By Colin Vicary in forum Excel General
    Replies: 3
    Last Post: 02-21-2007, 04:48 PM
  6. Macro =sum function not working correctly
    By crowdx42 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-21-2006, 12:47 AM
  7. [SOLVED] macro not working correctly
    By aaron in forum Excel General
    Replies: 1
    Last Post: 01-23-2006, 12:45 PM

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