Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
While day trading I'm required to keep a time log when each trade has been
executed. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How nice. Do you have a question?
-- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" <Day wrote in message ... While day trading I'm required to keep a time log when each trade has been executed. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "Don Guillett" wrote: How nice. Do you have a question? -- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" <Day wrote in message ... While day trading I'm required to keep a time log when each trade has been executed. 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. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
It sounds like you want an automatic time stamp, but you said you
wanted to track the time the trade was executed, so I don't see how Excel would get that info. If you want to have the current time go into a cell you can type [Ctrl]: (that is [Ctrl][Shift];). On May 29, 10:22 am, Day Trader wrote: "Don Guillett" wrote: How nice. Do you have a question? -- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" <Day wrote in message ... While day trading I'm required to keep a time log when each trade has been executed. 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. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "Don Guillett" wrote: right click sheet tabview codeinsert thissave 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 "Day Trader" wrote in message ... "Don Guillett" wrote: How nice. Do you have a question? -- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" <Day wrote in message ... While day trading I'm required to keep a time log when each trade has been executed. 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. I right click on Sheet 1 Then click on view code Once in view code where do I type in save? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Please TOP post for me
save the workbook.... -- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" wrote in message ... "Don Guillett" wrote: right click sheet tabview codeinsert thissave 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 "Day Trader" wrote in message ... "Don Guillett" wrote: How nice. Do you have a question? -- Don Guillett Microsoft MVP Excel SalesAid Software "Day Trader" <Day wrote in message ... While day trading I'm required to keep a time log when each trade has been executed. 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. I right click on Sheet 1 Then click on view code Once in view code where do I type in save? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Trade Time Help Automatic Subtraction | Excel Discussion (Misc queries) | |||
copying trade values | Excel Discussion (Misc queries) | |||
business days - trade date plus 3 | Excel Worksheet Functions | |||
How can I create a blotter? | Excel Worksheet Functions | |||
Back-testing trade data | Excel Worksheet Functions |