G
Guest
Hello,
I have recorded a macro where in a time is entered in a cell.
After entering the time the cursor gets back to cell D2.......I want after
entering the time cursor should be at the same cell where time is entered.
I have attached the text of recorded macro below........please suggest me
the change that is required do get the result.
Sub Macro2()
'
' Macro2 Macro
' Macro recorded 2/1/2006 by Dhami'
' Keyboard Shortcut: Ctrl+q
ActiveCell.FormulaR1C1 = "=NOW()"
Range("C
").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
Range("D2").Select
Application.CutCopyMode = False
End Sub
I have recorded a macro where in a time is entered in a cell.
After entering the time the cursor gets back to cell D2.......I want after
entering the time cursor should be at the same cell where time is entered.
I have attached the text of recorded macro below........please suggest me
the change that is required do get the result.
Sub Macro2()
'
' Macro2 Macro
' Macro recorded 2/1/2006 by Dhami'
' Keyboard Shortcut: Ctrl+q
ActiveCell.FormulaR1C1 = "=NOW()"
Range("C

Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
Range("D2").Select
Application.CutCopyMode = False
End Sub