T
Tom Hall
ActiveCell.FormulaR1C1 = "9/16/2009"
Range("B1").Select
ActiveCell.FormulaR1C1 = "9:25 AM"
Range("C1").Select
End Sub
I want to set up a simple workbook that enters the above information on the
current line in the sheet. When I recorded the keystrokes I wanted, I ended
up with the following macro, which only works once.
Starting with the second line, running the macro puts the date in the right
place, skips Column B and then leaves the cursor in R1C1.
How do I get this macro to enter all the information on the current line
(date in column 1, time in column 2)?
TIA,
Tom
Range("B1").Select
ActiveCell.FormulaR1C1 = "9:25 AM"
Range("C1").Select
End Sub
I want to set up a simple workbook that enters the above information on the
current line in the sheet. When I recorded the keystrokes I wanted, I ended
up with the following macro, which only works once.
Starting with the second line, running the macro puts the date in the right
place, skips Column B and then leaves the cursor in R1C1.
How do I get this macro to enter all the information on the current line
(date in column 1, time in column 2)?
TIA,
Tom