#1   Report Post  
Posted to microsoft.public.excel.misc
Ken Ken is offline
external usenet poster
 
Posts: 590
Default Time Stamp

I have a dynamic stock quote in cell "B2" ... in cell "C2" I want to record
the exact time that the stock price FIRST reachs a certain price. How do I
have this cell record this exact time only the first time the stock is at
this price and not change it later?
--
Ken
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 464
Default Time Stamp

Right click on the Sheet and choose View Code. In here paste


Private Sub Worksheet_Calculate()
If Range("B2") = 100 Then Range("C2") = Now
End Sub


--
Regards
Dave Hawley
www.ozgrid.com
"Ken" wrote in message
...
I have a dynamic stock quote in cell "B2" ... in cell "C2" I want to record
the exact time that the stock price FIRST reachs a certain price. How do I
have this cell record this exact time only the first time the stock is at
this price and not change it later?
--
Ken


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Time Stamp

I'm not sure what dynamic means in this case, but if it's based on a formula,
you could use something like this worksheet event procedu

Option Explicit
Private Sub Worksheet_Calculate()

Dim myRngToCheck As Range
Dim myCell As Range
Dim myLimit As Double

Set myRngToCheck = Me.Range("B2")

myLimit = 100

Application.EnableEvents = False
For Each myCell In myRngToCheck.Cells
If myCell.Value2 myLimit Then
If IsEmpty(myCell.Offset(0, 1).Value) Then
With myCell.Offset(0, 1)
.NumberFormat = "mmm dd, yyyy hh:mm:ss"
.Value = Now
End With
End If
End If
Next myCell
Application.EnableEvents = True

End Sub

If you want to try this, rightclick on the worksheet tab that should have this
procedure. Select View Code and paste this into the new codewindow that opened
(usually on the right).

If that dynamic update means something else that doesn't cause recalculations,
maybe you could tie into what ever updates that cell (a macro that refreshes a
query and does the other work, too????)



Ken wrote:

I have a dynamic stock quote in cell "B2" ... in cell "C2" I want to record
the exact time that the stock price FIRST reachs a certain price. How do I
have this cell record this exact time only the first time the stock is at
this price and not change it later?
--
Ken


--

Dave Peterson
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
Time Stamp Kenny Excel Discussion (Misc queries) 8 October 14th 08 06:15 PM
Time stamp M John Excel Discussion (Misc queries) 3 April 14th 08 05:51 PM
Time Stamp FARAZ QURESHI Excel Discussion (Misc queries) 8 January 8th 07 11:51 PM
Time Stamp japc90 Excel Discussion (Misc queries) 7 August 22nd 06 04:19 PM
Time Stamp sunderland27 Excel Discussion (Misc queries) 3 April 19th 06 07:05 PM


All times are GMT +1. The time now is 10:05 AM.

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"