Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a spread sheet that looks like so before the start
of the trading day: ColA ColB ColC ABC 4/7/2005 ColB tracks the trade time of stock ABC. When ABC does it's first trade, the spreadsheet looks like so: ColA ColB ColC ABC 9:32:28AM Is there a macro that will record the time of the first trade and place it in ColC ?? Thank you in advance. |
#2
![]() |
|||
|
|||
![]()
Carl -
How does that cell get updated? If it's from a live feed from some online data source, then you probably ought to post this in the Excel.Programming NG where you may find an answer. If it's updated manually, then you need only write a worksheet change event. Something like Private Sub Worksheet_Change(ByVal Target As Range) With Target If .Column = 2 And .Row = 5 Then .Offset(0, 1).Value = Target.Value End With End Sub "carl" wrote: I have a spread sheet that looks like so before the start of the trading day: ColA ColB ColC ABC 4/7/2005 ColB tracks the trade time of stock ABC. When ABC does it's first trade, the spreadsheet looks like so: ColA ColB ColC ABC 9:32:28AM Is there a macro that will record the time of the first trade and place it in ColC ?? Thank you in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Look for change next blank cell in Range | Excel Worksheet Functions | |||
change a function in a workbook without changing every cell | Excel Worksheet Functions | |||
Can an excel cell automatically change fill colors based on values | Excel Discussion (Misc queries) | |||
Change value in cell every n seconds | Excel Worksheet Functions | |||
change operating cells dynamically according to the value of a fixed cell | Excel Worksheet Functions |