+ Reply to Thread
Results 1 to 2 of 2

Auto-Copy & Paste

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-02-2008
    Location
    Jacksonville Beach, Florida
    MS-Off Ver
    Microsoft Excel 2003 and 2010
    Posts
    264

    Auto-Copy & Paste

    We are trying to automate the following process in Excel. Every day, we open a workbook (sample attached) and copy column B to column C and then paste value the formulas in column B. The next day we basically do the same thing only we copy the formulas in column C to column D and paste value column C...and so on...

    How can we automate this process so the copy over one column and paste value the previous column can be done using a form button (which we know how to do). We just need help with the code.
    Attached Files Attached Files
    ______________________________________
    "Vision without Execution is a Hallucination"
    Edison

  2. #2
    Forum Expert p24leclerc's Avatar
    Join Date
    07-05-2010
    Location
    Québec
    MS-Off Ver
    Excel 2021
    Posts
    2,081

    Re: Auto-Copy & Paste

    I did this macro by activating the relative reference and recording new macro while doing the action. It works well. You just have to click in any cell of the last column you want to copy and run the macro.


    Public Sub Copy_Column()
        ActiveCell.Offset(0, 0).Columns("A:A").EntireColumn.Select
        Selection.Copy
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.Insert Shift:=xlToRight
        ActiveCell.Offset(0, -1).Columns("A:A").EntireColumn.Select
        Application.CutCopyMode = False
        Selection.Copy
        Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
            xlNone, SkipBlanks:=False, Transpose:=False
        ActiveCell.Offset(4, 1).Range("A1").Select
    
    End Sub
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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