Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default capturing a cell value at a specific time of day

Can i capture the value of a dynamically updating cell at
a specific time of day(from a linked realtime
spreadsheet)? and if so how do i go about it?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default capturing a cell value at a specific time of day

Thomas,

Use OnTime that triggers a macro that captures the value. something like
this which runs the macro after 2 mins (120 secs)

Public dRun As Double

Sub StartTimer()

RunWhen = Now + TimeSerial(0, 0, 120)
Application.OnTime earliesttime:=dRun, _
procedu="mySub", _
schedule:=True
End Sub



Sub mySub()

Range("G3").Value = Range("C3").Value

End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Thomas Donino" wrote in message
...
Can i capture the value of a dynamically updating cell at
a specific time of day(from a linked realtime
spreadsheet)? and if so how do i go about it?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Capturing Real Time Data Rob Excel Worksheet Functions 2 February 24th 10 04:44 AM
Capturing Trend Data over time WildWill Excel Discussion (Misc queries) 1 March 31st 09 12:53 PM
VB Code Required for Capturing Time TGV Excel Discussion (Misc queries) 4 February 14th 09 03:26 PM
Capturing average turn around time with constraints BrettS Excel Worksheet Functions 0 June 17th 08 03:12 PM
Date Capturing by Time Ken Excel Discussion (Misc queries) 1 December 2nd 07 10:50 AM


All times are GMT +1. The time now is 12:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"