Results 1 to 9 of 9

Double click cell - copy data to new sheet - create a list from double clicking

Threaded View

kakky Double click cell - copy data... 05-03-2015, 11:56 PM
vcoolio Re: Double click cell - copy... 05-04-2015, 02:33 AM
maxwell13 Re: Double click cell - copy... 05-04-2015, 02:46 AM
JOHN H. DAVIS Re: Double click cell - copy... 05-04-2015, 07:37 AM
vcoolio Re: Double click cell - copy... 05-04-2015, 08:14 AM
JOHN H. DAVIS Re: Double click cell - copy... 05-04-2015, 08:44 AM
vcoolio Re: Double click cell - copy... 05-04-2015, 09:05 AM
kakky Re: Double click cell - copy... 05-04-2015, 10:30 PM
vcoolio Re: Double click cell - copy... 05-04-2015, 11:14 PM
  1. #1
    Registered User
    Join Date
    05-03-2015
    Location
    new zealand
    MS-Off Ver
    2013
    Posts
    2

    Double click cell - copy data to new sheet - create a list from double clicking

    Hi,

    I have hunted the forums for a while now trying to find a solution for the problem I am stuck with.

    I wish to create a Code enabling me to Double click a cell, in turn it then copies the cell to a new sheet. I then wish to go back to the first sheet and double click the next item to copy across, pasting the new item underneath the first copied cell, continuing to do this multiple times to create a list

    Currently this Code over writes the cell on the new sheet (D1)
    how can I change the range to be row D recurring?

    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    If Not Intersect(Target, Range("A1:A15")) Is Nothing Then
    Cancel = True
    Target.Copy
    Sheets("SHEET1").Range("D1").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    Sheets("SHEET1").Select
    End If
    End Sub

    cheers,
    Kak
    Last edited by kakky; 05-04-2015 at 12:21 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Before double click event with if statements (Double clicking blank cell stops bdc firing)
    By camdenpars in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-27-2014, 09:03 AM
  2. 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
  3. [SOLVED] Copy data to another sheet a double click option vba
    By KK1234 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-22-2014, 06:49 PM
  4. 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
  5. Create macro upon double click cell display filter in new sheet
    By kamalhilmi in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-14-2012, 07:40 AM

Tags for this Thread

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