+ Reply to Thread
Results 1 to 13 of 13

Copy row when cell changes

Hybrid View

  1. #1
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Copy row when cell changes

    Hello people,

    I have a thing in my head, not sure if it is possible but if so, I bet someone here would know.

    I have this table on sheet 1(Table1). If something changes in the 15th column I want that entire row copied and pasted on
    sheet2 on the next blanc row.
    And, the most exiting part... I want to past on that same row an additional cell the date of Today()


    I know it has to be something with

    Private Sub Worksheet_Change(ByVal Target As Range)

    If Not Intersect(Target, ListObjects(Table1).ListColumns(15).DataBodyRange) Is Nothing Then


    And something with


    Target.Row.Copy
    Sheets.Sheet2.Range("A" & Range("A" & Cells.Rows.Count).End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False



    But everything I try, I get debugs.
    And I don't even know where to start to add te Today()

    Can someone please show me how this is done? If it is possible at all!

  2. #2
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    Hi, maybe you can work with this:
    Option Explicit
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim LRow&, lCol&
        If Not Intersect(Target, Columns(15)) Is Nothing Then
            Range(Cells(Target.Row, 6), Cells(Target.Row, 19)).Copy  '<-- columns to be adjusted to your need
            LRow = Worksheets(2).Cells(Rows.Count, 1).End(xlUp).Row + 1
            Worksheets(2).Range("A" & LRow).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
            lCol = Worksheets(2).Cells(LRow, Columns.Count).End(xlToLeft).Column
            Worksheets(2).Cells(LRow, lCol + 1) = Date
        End If
    End Sub
    Cheers
    Erwin
    Last edited by Eastw00d; 05-11-2020 at 03:53 AM.
    I started learning VBA because I was lazy ...
    Still developing.... being more lazy...

  3. #3
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    Thank you very much! I think I am doing something wrong, because it doens't do anything.

    I don't know what target row 6 and target row 19 stands for.
    When you open the attached file, does it work for you?
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    yes, 6 and 19 are the begin and endcolumns of my Table, as you didn't provide a workbook, like now.
    So you can adjust these numbers into 1 and 17.
    Also I would change Worksheets(2) into Worksheets("Sheet2")

    Cheers
    Erwin

  5. #5
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    Getting half way there now

    The debug I get is for

    LRow = Worksheets(sheet2).Cells(Rows.Count, 1).End(xlUp).Row + 1

    It says 'subscript out of range'

    Often this is because a reference is not right, but in this case it is right.

    I tried manually copy&paste a row in sheet2 so i know that it can find a new blanc row below it, still not working.

    Any idea what I need to change?

  6. #6
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    Yes, you have to use "quotes", like "Sheet2"

    Cheers
    Erwin

  7. #7
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    You are a master Amazing, thank you very much!
    And apologies for my stupid missing out on "" lol

    Thank you a million times! Hero!

  8. #8
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    Just wondering.. Because I think this is all really amazing

    Can you also make a mix with this code and another IF situation.

    Like for instance:
    If column N = "Patrick" AND column 15 is changed -> then copy and paste?

  9. #9
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    No problem, but column 15 is the column where Patrick lives
    Cheers
    Erwin

  10. #10
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    Bad example.
    So lets say I want column 6 to be "To do"

    I try to make from:
    If Not Intersect(Target, Columns(15)) Is Nothing Then

    To:
    If Not Intersect(Target, Columns(15)) Is Nothing And Intersect(Target, Columns(6)).Value = "To Do" Then

    That didn't work, so I tried:

    If Not Intersect(Target, Columns(15)) Is Nothing And Range("F:F").Value = "To Do" Then

    I thought I could figure this addition out for myself.. But I think I am way off here.
    Could you be so very kind of telling me how this one must be? Last question, I swear

  11. #11
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    You cannot have two changes in one action, as you don't changetwo cells in the same time,
    but you can do an if condition in the following line which determine if the code should be executed or not,
    for example:
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim LRow&, lCol&
        If Not Intersect(Target, Columns(6)) Is Nothing Then
            If Cells(Target.Row, 15) = "Patrick" Then
                
                Range(Cells(Target.Row, 1), Cells(Target.Row, 17)).Copy  '<-- columns to be adjusted to your need
                LRow = Worksheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Row + 1
                Worksheets("Sheet2").Range("A" & LRow).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
                lCol = Worksheets("Sheet2").Cells(LRow, Columns.Count).End(xlToLeft).Column
                Worksheets("Sheet2").Cells(LRow, lCol + 1) = Date
            Else
                'Do nothing or execute code to be placed here
            End If
        End If
    End Sub
    Cheers
    Erwin

  12. #12
    Registered User
    Join Date
    03-27-2020
    Location
    nederland
    MS-Off Ver
    2016
    Posts
    16

    Re: Copy row when cell changes

    Wow.. Amazing. Thank you very much!

  13. #13
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Copy row when cell changes

    You better can change this line too, otherwise the line in Sheet2 will be overwritten every time:
                LRow = Worksheets("Sheet2").Cells(Rows.Count, 5).End(xlUp).Row + 1
    (as column A seems to be empty)
    Cheers
    Erwin

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. vba to copy certain elements in cell comments & copy to offset cell in same row
    By sureng20 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-24-2017, 11:03 PM
  2. vba to copy and insert row and copy/paste cell value if cell not blank!
    By GaryDML in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-27-2014, 02:17 AM
  3. [SOLVED] Macro to copy cell width to new sheets (ie copy original sheet format)
    By teenyjem in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-20-2013, 07:28 AM
  4. [SOLVED] How to copy data in a cell in Sheet1 to a cell in Sheet2 using =COPY( )?
    By Mr D Relf in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 07-17-2013, 10:39 AM
  5. copy a specif cell value, find another like that in sheet copy adjacent cell and pate
    By smwaqas89 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-16-2013, 10:00 AM
  6. [SOLVED] copy cell to another cell, increment and copy back.
    By Tathagata in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 04-18-2012, 07:59 PM
  7. Copy one cell to an other but colors do not copy. While not using clipboard to copy.
    By chuckchuckit in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-19-2010, 03:08 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