+ Reply to Thread
Results 1 to 3 of 3

Double click on cell and enter data

Hybrid View

  1. #1
    Registered User
    Join Date
    07-01-2010
    Location
    adelaide
    MS-Off Ver
    Excel 2003
    Posts
    86

    Double click on cell and enter data

    Need a VBA that will when you double click in cells o20:o23 the data in that cell will enter in k10

  2. #2
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Double click on cell and enter data

    Hi Ipratt,

    Double click will put the cell in editing mode, I would suggest you to use selection change event :-

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    
    i = Selection.Address
        If i = "$O$20" Or i = "$O$21" Or i = "$O$22" Or i = "$O$23" Then
        ActiveCell.Copy Range("k10")
        End If
    End Sub
    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), dilipandey@gmail.com

  3. #3
    Forum Expert
    Join Date
    09-27-2011
    Location
    Poland
    MS-Off Ver
    Excel 2007
    Posts
    1,312

    Re: Double click on cell and enter data

    Hi try this
    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    Dim rng As Range
    Set rng = Range("o20:o23")
    If Not Intersect(Target, rng) Is Nothing Then
    Cancel = True
    Range("k10") = Date
    End If
    Cancel = False
    End Sub
    in a module of worksheet
    Regards

    tom1977

    If You are satisfied with my solution click the small star icon on the left to say thanks.

+ 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