+ Reply to Thread
Results 1 to 9 of 9

assign a macro to a cell

Hybrid View

  1. #1
    Registered User
    Join Date
    03-26-2013
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    5

    assign a macro to a cell

    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.

  2. #2
    Forum Contributor
    Join Date
    03-04-2013
    Location
    Europe
    MS-Off Ver
    Office 365 ProPlus
    Posts
    147

    Re: assign a macro to a cell

    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?

  3. #3
    Registered User
    Join Date
    03-26-2013
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: assign a macro to a cell

    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?

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: assign a macro to a cell

    Right click on the sheet containing the data and enter this code -
    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
    As soon as you double click the cell in column G, H will show the date and time.
    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]

  5. #5
    Registered User
    Join Date
    03-26-2013
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: assign a macro to a cell

    Quote Originally Posted by arlu1201 View Post
    Right click on the sheet containing the data and enter this code -
    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
    As soon as you double click the cell in column G, H will show the date and time.
    This is great, how do I edit this so it just does it for say for cells G11 and H11?

  6. #6
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: assign a macro to a cell

    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

  7. #7
    Registered User
    Join Date
    03-26-2013
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: assign a macro to a cell

    Quote Originally Posted by arlu1201 View Post
    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
    Thank you Arlu, you have been really helpful. How can I expand the Macro for example I need to do the same thing for I11 to show the date/time of J11?

  8. #8
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: assign a macro to a cell

    Put another if statement below the existing one.

  9. #9
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: assign a macro to a cell

    Hi, Wilo13,

    try
    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
    And maybe avoid to fully quote posts.

    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

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1