+ Reply to Thread
Results 1 to 1 of 1

Auto Refresh the =Now() function

  1. #1
    Forum Contributor
    Join Date
    08-10-2009
    Location
    nottingham
    MS-Off Ver
    Excel 2010
    Posts
    110

    Auto Refresh the =Now() function

    Hi,

    Could someone point me in the right direction for an auto refresh solution. I thought this would be a simple issue but a quick google brings up complete rubbish

    I've got a due by date in one cell, the =now() function in another, then a third was calculates the difference in hours between the two. I need this to automatically refresh every second so the cell which calculates the difference acts like a countdown clock.

    Can anyone point me in the right direction?

    thanks

    edit:

    found this which works for now...

    Place this code in the ThisWorkBook Module:


    Private Sub Workbook_Open()
    ****Dim CalcTime As String
    ****CalcTime = Format(WorksheetFunction. _
    ****Ceiling(Timer, 60) / 86400, "long time")
    ****Application.OnTime TimeValue(CalcTime), "UpdateTime"
    End Sub



    And this code in a Standard Module :


    Public Sub UpdateTime()
    ****Range("I11").Calculate
    ****Application.OnTime Time + _
    ****TimeSerial(0, 1, 0), "UpdateTime"
    End Sub
    Place this code in the ThisWorkBook Module:


    Private Sub Workbook_Open()
    ****Dim CalcTime As String
    ****CalcTime = Format(WorksheetFunction. _
    ****Ceiling(Timer, 60) / 86400, "long time")
    ****Application.OnTime TimeValue(CalcTime), "UpdateTime"
    End Sub



    And this code in a Standard Module :


    Public Sub UpdateTime()
    ****Range("I11").Calculate
    ****Application.OnTime Time + _
    ****TimeSerial(0, 1, 0), "UpdateTime"
    End Sub
    Last edited by inq80; 02-26-2015 at 07:08 PM.

+ 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. Macro/VBA to Auto Refresh + Auto Email
    By grosh83 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-15-2014, 09:05 PM
  2. Enable Auto Refresh - Wait for refresh to sinish before running a macro
    By tomlancaster in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-21-2011, 11:52 AM
  3. Auto Refresh of Now() function
    By ss280404 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-20-2008, 01:39 AM
  4. [SOLVED] How can I auto-refresh auto-filters when data changes?
    By Mike@MPWco in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 07-04-2006, 07:55 AM
  5. Auto-run macro after auto-query refresh (Excel2000,sr1)
    By Bill Cufflin in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-28-2006, 10:35 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