+ Reply to Thread
Results 1 to 4 of 4

I need Help duplicating selected columns from a master job sheet to a new sheet

  1. #1
    Registered User
    Join Date
    12-12-2011
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    2

    I need Help duplicating selected columns from a master job sheet to a new sheet

    I need select columns to be duplicated (including formatting) on a new sheet in the same worksheet. I need it to automatically update the Followup sheet when I make changes to the Master sheet.(including inserting new rows) I currently have tried Lookup formula and grouping sheets. lookup worked to duplicate the data but would not copy a inserted row... Thanks in advance for looking into this! I have attached the file. I want to duplicate Columns:A, G, and J thanks again!BID SCHEDULE December.xlsx

  2. #2
    Registered User
    Join Date
    12-11-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    36

    Re: I need Help duplicating selected columns from a master job sheet to a new sheet

    Hi,

    If you just want to keep a back up of data, you can use a macro instead of running into complex formulas. You can use the following macro, it will back up your data. I've assigned a keyboard shortcut key "CTRL+Q to execute this macro in your sheet.
    All you have to do is update your master sheet and press "CTRL+Q" and this will copy the selected columns to follow up sheet. You can insert rows,change format everything wil be copied as it is.

    Sub Macro1()
    '
    ' Macro1 Macro
    '
    '
    Range("A6:A500").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("DECEMBER FOLLOW-UP").Select
    Range("A6:A500").Select
    ActiveSheet.Paste
    Sheets("DECEMBER BID FILE").Select
    Range("G6:G500").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("DECEMBER FOLLOW-UP").Select
    Range("B6:B500").Select
    ActiveSheet.Paste
    Sheets("DECEMBER BID FILE").Select
    Range("J6:J500").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("DECEMBER FOLLOW-UP").Select
    Range("C6:C500").Select
    ActiveSheet.Paste
    Sheets("DECEMBER BID FILE").Select
    Range("A6").Select
    End Sub


    Hope this helps.

    Warm regards
    Ishtiyaq
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    12-12-2011
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: I need Help duplicating selected columns from a master job sheet to a new sheet

    Thanks for your help I"ll try it and see how that works!

  4. #4
    Registered User
    Join Date
    06-01-2011
    Location
    Ontario, Canada
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: I need Help duplicating selected columns from a master job sheet to a new sheet

    will this work if I want it to be copied on a different workbook? this example shows it on the same workbook.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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