I have never used macro's before in excel so I am a bit clueless.
I want to be able to click on a cell (e.g. G11) and when I click the cell the current date and time appears in cell H11.
Tips and advice would be much appreciated.
I have never used macro's before in excel so I am a bit clueless.
I want to be able to click on a cell (e.g. G11) and when I click the cell the current date and time appears in cell H11.
Tips and advice would be much appreciated.
You could insert a command button (found in developer > add > command button) and then assign a macro to said button that displays the date and time in H11. Is that helpful?
I know I can do it that way but I want to do it by clicking on the actual cell. Ideally so I have to double click on the cell for the date/time to appear in the other cell. I want to do this on numerous cells e.g.
Cell G11 when double clicked to show date/time cell H11.
Cell G12 when double clicked to show date/time in cell H12 etc.
Also when I click on say G11 I only want it to update the date/time in cell H11 and not in cells H12,H13 etc.
Any VBA pros out there, would you recommend a good book/source to learn the basics?
Right click on the sheet containing the data and enter this code -
As soon as you double click the cell in column G, H will show the date and time.![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Target.Column = 7 Then Range("H" & Target.Row).Value = Date & " " & Time End Sub
If I have helped, Don't forget to add to my reputation (click on the star below the post)
Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
Use code tags when posting your VBA code: [code] Your code here [/code]
Try this
![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Target.Address = "$G$11" Then Range("H" & Target.Row).Value = Date & " " & Time End Sub
Put another if statement below the existing one.
Hi, Wilo13,
try
And maybe avoid to fully quote posts.![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Not Intersect(Target, Range("G11:G12")) Is Nothing Then Target.Offset(0, 1).Value = Now End If End Sub
Ciao,
Holger
Use Code-Tags for showing your code: [code] Your Code here [/code]
Please mark your question Solved if there has been offered a solution that works fine for you
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks