+ Reply to Thread
Results 1 to 23 of 23

Macro to automatically copy and paste rows to different Sheet

  1. #1
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Exclamation Macro to automatically copy and paste rows to different Sheet

    Hi,

    I'm new to VBA, but I would really appreciate if you can help with creating a macro to copy rows to different sheet.

    There are two version of the same excel file. One of the file(test22) is compatible with excel 97-2003.

    test.xlsx

    test22.xls

    The workbook has two sheets one is 'Names' and the other is 'ColumnF.'

    All information will be updated to the "Names" worksheet, which is the main sheet and I would like to automatically move any rows with 'Yes' for ColumnF to the "ColumnF" worksheet. But the rows should only be copied up to ColumnE.

    I would also like to have a Yes or No selection under Column F, if possible. Thank you.
    Attached Files Attached Files
    Last edited by prabhu2; 10-17-2013 at 08:36 PM. Reason: updated files

  2. #2
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Macro to automatically copy and paste rows to different Sheet

    Show in the file the desired (expected) result.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  3. #3
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Hi,

    I have updated the files to reflect the 'expected' result. The worksheet 'ColumnF' should copy up to Column E from the worksheet 'Names.' If you view the file now the worksheet "ColumnF" will show all names with 'Yes' under ColumnF Thanks.

  4. #4
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Anyone else that can help with this? Thanks...

  5. #5
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    The code is in sheet name and is fired-on by changing column F to "Yes"
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Exclamation Re: Macro to automatically copy and paste rows to different Sheet

    Hi,

    Thank you AB33 for replying to this thread.

    I have made some changes to the original workbook and I had found a piece of code online which helped me to full fill my need, and I would appreciate if you could help me modify it a bit to suit my need.

    The new workbook has Sheet1 and Sheet2. Sheet1 contain all information and filtered data needs to be moved over to Sheet2, ColumnF is the filter range.

    The rows are being copied from ColumnA to ColumnE. Rest of the columns in Sheet2 will be updated as required.

    The issue I have now is to keep the column names unchanged in Sheet2 when information is copied over from Sheet1.

    When I run the code the column names in Sheet2 disappearing.

    How do I instruct the macro to only copy from the 6th or 7th row? I would also like to add a button to run the macro on Sheet1.

    Please see the attached workbook. Many Thanks!


    dtest.xlsm

    Please Login or Register  to view this content.
    Last edited by prabhu2; 10-14-2013 at 02:10 PM. Reason: added additional issues

  7. #7
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    If you are referring to the above code, it copies, starting from 2 in sheet2, so I do not know which one do you want to change.

  8. #8
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    Oops,
    Change this line

    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Thank you, that resolved the column names issue. But, If I wanted to start copying from the 4th or 5th how should I modify the code? I'm pretty new to VBA, thanks for helping

  10. #10
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    Please Login or Register  to view this content.
    TO

    Please Login or Register  to view this content.

  11. #11
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Thank you AB33,

    I would like to have Sheet1 to automatically execute the macro in modules, whenever the value in columnF get changed. I found a piece of code for this online but it is for a cell range instead of a column,

    Please Login or Register  to view this content.
    I have changed the code above to reflect the macro on dtest file which is called 'test'

    Please Login or Register  to view this content.
    But I'm not sure about the syntax to use for setting up the columnf as range... please help. Thanks

  12. #12
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    Use and amend the code I gave you earlier (post #5)

  13. #13
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Thank you, I have modified the code you gave earlier and added to 'sheet1,' and it seems to be updating sheet2 automatically. I have also attached a sub process to this code in sheet1, which pops a message box whenever the ColumnF is modified. I'm curious why this message box appears when I run the macro on Sheet1 from VBA, but it doesn't show the message when I update things on the worksheet. I have pasted the code below. Thanks again AB33!

    Please Login or Register  to view this content.

  14. #14
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    You should not mix, standard module codes with event driven codes. If you firing the event code from the module, that code should not be on sheets, but on standard module, so the sub process should be on standard module and sub change even code on the sheet the change events takes place.

  15. #15
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Hi,

    Thanks for the reply, so should I be placing the sub process for the message box on standard module? I have added to the bottom of the code on module and left sheet1 with the

    Sheet1:
    Please Login or Register  to view this content.

    Module1:
    Please Login or Register  to view this content.
    But this still not showing the message box...am I doing something wrong here? Thanks

  16. #16
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    You have called
    Please Login or Register  to view this content.
    But not Sub Process()

    Or you could include the message within the test code, like

    Please Login or Register  to view this content.

  17. #17
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Great! That works like a charm.

    One more thing, the code on Sheet1 automatically updates Sheet2 if we input 'x' under columnF, but the automatic update fails, when we reverse the 'x' to 'n.'

    But it works fine if we run the macro from VBA. Any suggestions? Thanks AB33.

  18. #18
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    This line again, it says "x"

    Please Login or Register  to view this content.
    You also need to change the x in to n in sub test

  19. #19
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Hi AB33,

    If I were to change "x" into "n" then the macro will only copy rows if the values are "n" under ColumnF.

    The macro on module1 is already copying rows when x values are placed in ColumnF, but the automatic update code on Sheet1 copies rows to Sheet2 and fail to reflect changes on Sheet1 if values are changed from 'x' to 'n'

    When I execute the macro form VBA it seems to be updating Sheet2, reflecting changes made to Sheet1.

    Is there a way to modify the code on Sheet1 to reflect changes and apply them to Sheet2? If this is not possible,
    can you help me with creating a button on Sheet1, which would run the macro on module1? Thank you.

  20. #20
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Please Login or Register  to view this content.
    Hi AB33,

    I also have another question, I understand the above piece of code define the copy range of the rows from Row1 etc, but what about the pasting range, what If I wanted to paste starting from Row5th per say? Thanks.

    I have re-pasted the code on Module1 below. Thanks again for helping me with this

    Please Login or Register  to view this content.

  21. #21
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Macro to automatically copy and paste rows to different Sheet

    This is going to be my last post. I spent few hours on this thread and does not seem the end is in sight.
    If you have data in row 4 and nothing below it, the next empty row would be 5, so this line works.
    Please Login or Register  to view this content.
    But if this is not the case.


    Please Login or Register  to view this content.

  22. #22
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    Thank you AB33, that seems to work. Thank you for helping me with the macro. I do not intend to takeaway your personal time. I will be doing some more modifications to the file and if I need anymore help, I'm sure someone else would be able to help here or I'll seek help elsewhere.

    I really appreciate your help.
    Thanks and have a nice day.

  23. #23
    Registered User
    Join Date
    10-13-2013
    Location
    canada
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Macro to automatically copy and paste rows to different Sheet

    I'm glad to say I was able to manipulate the codes to my need Problem is resolved! :D

+ 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. Automatically copy and paste rows based on cell value
    By no.18shirt in forum Excel General
    Replies: 3
    Last Post: 06-15-2013, 12:14 AM
  2. Replies: 1
    Last Post: 10-28-2012, 01:13 AM
  3. copy, paste rows to new sheet using autofilter macro
    By cvsuryam in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-06-2011, 07:26 AM
  4. Macro: Count rows in sheet A, copy count in sheet B, paste offset in sheet A
    By Agent:Orange in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-19-2011, 07:56 AM
  5. [SOLVED] Macro to copy and paste rows to a new sheet based on criteria
    By Belo in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-31-2010, 02:25 AM

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