+ Reply to Thread
Results 1 to 3 of 3

Copy and paste values in column range into first empty column to the left

  1. #1
    Registered User
    Join Date
    10-15-2014
    Location
    Albuquerque
    MS-Off Ver
    7
    Posts
    5

    Copy and paste values in column range into first empty column to the left

    Hello- Very new to VBA so please bear with me.

    I have a column range E2:E12 in worksheet 1 that I want to copy and paste values to the first empty column to the left in worksheet 2. I have seen similar threads to resolve this issue but none of them seem to work with what I am trying to do.

    I have attached the worksheet so you can see what I am trying to do.

    Thanks!
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    10-15-2014
    Location
    Albuquerque
    MS-Off Ver
    7
    Posts
    5

    Re: Copy and paste values in column range into first empty column to the left

    After working on this for 6 hours I found the solution just after I posted.

    Sub PastetoLast()

    Sheets("Tax and CC Balance").Range("e2:e12").Copy
    Sheets("Tax Running Balance").Range("AG2").End(xlToLeft).Offset(, 1).PasteSpecial xlValues
    Application.CutCopyMode = False

    End Sub

  3. #3
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Copy and paste values in column range into first empty column to the left

    Let me know if you don't know where to put the code:

    Please Login or Register  to view this content.

+ 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. [SOLVED] Copy all cells in column that contain data & paste to first empty row of another column.
    By BPSJACK in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-02-2014, 08:45 AM
  2. copy & paste last column from pivot table to next empty column
    By kitrak2 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-12-2013, 06:57 PM
  3. [SOLVED] Macro to Copy and Paste a Column to the next available empty column
    By ekr in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-03-2013, 02:50 AM
  4. Vba - find next empty column, insert column, copy paste values & copy paste formulas
    By DoodlesMama in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-20-2012, 12:43 PM
  5. Replies: 4
    Last Post: 08-31-2010, 10:48 PM

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