D
Day Trader
While day trading I'm required to keep a time log when each trade has been
executed.
executed.
Don Guillett said:How nice. Do you have a question?
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
In column E, I will be inputing trades that are executed throughout the day. For each trade I need to time stamp what time such trade was executed in column F.
Then click on view codeDon Guillett said:right click sheet tab>view code>insert this>save
Now when you enter something in col F the time will show in col G
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("f2:f200")) Is Nothing Then Exit Sub
Target.Offset(, 1) = Time
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
I right click on Sheet 1