Results 1 to 4 of 4

Copy cell value on double click

Threaded View

  1. #1
    Registered User
    Join Date
    02-19-2011
    Location
    Cairo
    MS-Off Ver
    Excel 2010
    Posts
    60

    Lightbulb Copy cell value on double click

    Hello Experts,

    When i double click on any cell from range (B10:J40000)
    I want to copy the cell value to same column but to row 7 .. i found the code below but it's doing different job , please help me to modify it in order to be able to perform the task i want.
    Attached a sample for ref.

    many thanks,
    Wellous,


    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    
        If Not Intersect(Target, Range("B10:J40000")) Is Nothing Then
            Cancel = True
    
            If Application.CountIf(Sheets("sheet1").Range("B7:j7"), Target.Value) = 0 Then
           Cells(Target,Range("B7:J7")).Value = Target.Value
            End If
        End If
    
    End Sub
    Attached Files Attached Files
    Last edited by wellous; 12-01-2014 at 02:36 PM. Reason: correcting and adding attachement for ref.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Changing cell properties with double click, then revert with another double click
    By mweber2525 in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 03-01-2014, 01:40 PM
  2. Copy double-clicked cell to next empty row in different sheet with each double-click
    By erhathaway in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 08-25-2013, 12:06 AM
  3. How to copy the value of cell into clipboard by double click
    By lassang01 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-24-2007, 05:01 PM
  4. how to copy on double-click the cell value to Clipboard
    By cyrille in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-15-2005, 06:45 PM
  5. [SOLVED] how to copy on double-click the cell value to Clipboard
    By cyrille in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 02-11-2005, 08:06 PM

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