+ Reply to Thread
Results 1 to 8 of 8

Refresh

  1. #1
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    Refresh

    I have a workbook with approx 5 imports on different worksheets and i would like to refresh all them at precisely 18 minutes past every hour.

    Can this be done?

  2. #2
    Ardus Petus
    Guest

    Re: Refresh

    Are your imports made thru Data>External Data ?

    --
    AP

    "ceemo" <[email protected]> a écrit dans le
    message de news: [email protected]...
    >
    > I have a workbook with approx 5 imports on different worksheets and i
    > would like to refresh all them at precisely 18 minutes past every
    > hour.
    >
    > Can this be done?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=550248
    >




  3. #3
    Ardus Petus
    Guest

    Re: Refresh

    Option Explicit

    Dim dNext As Date

    Sub Auto_Open()
    dNext = TimeSerial(Hour(Now) + IIf(Minute(Now) < 18, 0, 1), 18, 0)
    Application.OnTime dNext, "refreshdata"
    End Sub

    Sub refreshdata()
    MsgBox Now
    dNext = TimeSerial(Hour(dNext) + 1, 18, 0)
    Application.OnTime dNext, "refreshdata"
    End Sub

    Sub cancelTimer()
    Application.OnTime dNext, "refreshdata", , False
    End Sub

    HTH
    --
    AP

    "ceemo" <[email protected]> a écrit dans le
    message de news: [email protected]...
    >
    > I have a workbook with approx 5 imports on different worksheets and i
    > would like to refresh all them at precisely 18 minutes past every
    > hour.
    >
    > Can this be done?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=550248
    >




  4. #4
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    refresh

    yes my data is imported via a web page.

    Will the code provided meet my requirement?

    i see the code includes a msg box will it prompt each time before refresh as id like it to happen auto as its o display on a plasma screen?


    thank you for your help

  5. #5
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    Refresh Problem

    Please see the previous posts.

    I couldnt get them to work but i did manae to modify the code to the below and it works for one refresh at 20 minutes past but doesnt refresh after that. want it to keep refresh over and over if possible?

    Please can you help?

    Option Explicit

    Dim dNext As Date

    Sub Auto_Open()

    dNext = TimeSerial(Hour(Now) + IIf(Minute(Now) < 20, 0, 1), 20, 0)
    Application.OnTime dNext, "refreshdata"
    Workbooks(ActiveWorkbook.Name).RefreshAll
    End Sub

    Sub refreshdata()
    dNext = TimeSerial(Hour(dNext) + 1, 20, 0)
    Application.OnTime dNext, "refreshdata"
    Workbooks(ActiveWorkbook.Name).RefreshAll
    End Sub

    Sub cancelTimer()
    Application.OnTime dNext, "refreshdata", , False
    End Sub

  6. #6
    Registered User
    Join Date
    08-24-2005
    Posts
    8

    Lightbulb

    If you go into the workbook options, and set calculation to manual on the "Calc" tab, and tick, "recalculate before save".

    Then go into the tools menu and select autosave (if its not there, you can install it from the add-ins option, or download). Then just set the autosave time to 60minutes, and it will recalculate all formulas before saving and it won't prompt you if you uncheck the box.

    Simple solution, dont know what your running on your sheet, or if it works for web queries, but it should recheck imported data too. Worth a try.


    GoJo
    Last edited by gareth93; 06-15-2006 at 09:12 AM.

  7. #7
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    Refresh

    Thanks for the info but i would like to code this in VB.
    Anyone have any suggestions?

  8. #8
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    Help

    Im still looking for some help on this one.

    Can anyone please take a look as im half way there?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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