+ Reply to Thread
Results 1 to 7 of 7

Transfer data from one worksheet to another, then moving over three columns.

  1. #1
    Registered User
    Join Date
    09-12-2014
    Location
    ON, Canada
    MS-Off Ver
    2007
    Posts
    24

    Transfer data from one worksheet to another, then moving over three columns.

    Hi there,

    I would like to transfer data from one spreadsheet to another, by clicking a button (this part is working). However, the next time the user will enter the details, will be a new month. Ideally, the information will move over three columns and paste again:

    Private Sub CommandButton1_Click()
    With Sheet2.Cells(Rows.Count, 2).End(x1Up)

    .Offset(1, 0).Value = ActiveSheet.Range("b23").Value
    .Offset(1, 1).Value = ActiveSheet.Range("h23").Value
    .Offset(1, 2).Value = ActiveSheet.Range("b13").Value
    .Offset(2, 0).Value = ActiveSheet.Range("c23").Value
    .Offset(2, 1).Value = ActiveSheet.Range("i23").Value
    .Offset(2, 2).Value = ActiveSheet.Range("c13").Value
    .Offset(3, 0).Value = ActiveSheet.Range("d23").Value
    .Offset(3, 1).Value = ActiveSheet.Range("j23").Value
    .Offset(3, 2).Value = ActiveSheet.Range("d13").Value
    .Offset(4, 0).Value = ActiveSheet.Range("e23").Value
    .Offset(4, 1).Value = ActiveSheet.Range("k23").Value
    .Offset(4, 2).Value = ActiveSheet.Range("e13").Value

    End With

    End Sub
    Attached Files Attached Files

  2. #2
    Forum Expert JLGWhiz's Avatar
    Join Date
    02-20-2011
    Location
    Florida, USA
    MS-Off Ver
    Windows 10, Excel 2013
    Posts
    2,070

    Re: Transfer data from one worksheet to another, then moving over three columns.

    See if this does what you want.

    Please Login or Register  to view this content.
    Any code provided by me should be tested on a copy or a mock up of your original data before applying it to the original. Some events in VBA cannot be reversed with the undo facility in Excel. If your original post is satisfied, please mark the thread as "Solved". To upload a file, see the banner at top of this page.
    Just when I think I am smart, I learn something new!

  3. #3
    Registered User
    Join Date
    09-12-2014
    Location
    ON, Canada
    MS-Off Ver
    2007
    Posts
    24

    Re: Transfer data from one worksheet to another, then moving over three columns.

    Close.

    But when I hit the button again (to submit the next month's info). It doesn't transfer at all. Also, when I modified

    With Sheet2.Cells(3, Columns.Count).End(xlToLeft).Offset(, 1)
    to
    With Sheet2.Cells(1, Columns.Count).End(xlToLeft).Offset(, 1)
    (to fit the second page formatting, I cleared all data on page 2, but it stopped transferring data then too).

  4. #4
    Forum Expert JLGWhiz's Avatar
    Join Date
    02-20-2011
    Location
    Florida, USA
    MS-Off Ver
    Windows 10, Excel 2013
    Posts
    2,070

    Re: Transfer data from one worksheet to another, then moving over three columns.

    Try this modified version. Based on the original sheet 2 layout.
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    09-12-2014
    Location
    ON, Canada
    MS-Off Ver
    2007
    Posts
    24

    Re: Transfer data from one worksheet to another, then moving over three columns.

    That's a thing of beauty! It worked! Thank-you so much for your help!

  6. #6
    Valued Forum Contributor
    Join Date
    04-01-2015
    Location
    The Netherlands
    MS-Off Ver
    2003/2007/2010/2016/office 365
    Posts
    880

    Re: Transfer data from one worksheet to another, then moving over three columns.

    Or

    Please Login or Register  to view this content.

  7. #7
    Forum Expert JLGWhiz's Avatar
    Join Date
    02-20-2011
    Location
    Florida, USA
    MS-Off Ver
    Windows 10, Excel 2013
    Posts
    2,070

    Re: Transfer data from one worksheet to another, then moving over three columns.

    Quote Originally Posted by KLG519 View Post
    That's a thing of beauty! It worked! Thank-you so much for your help!
    You're welcome,
    regards, JLG

+ 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. Replies: 1
    Last Post: 03-12-2017, 01:02 PM
  2. [SOLVED] Transfer data from certain columns in the last row of data to separate worksheet
    By infoanalyzer in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-06-2015, 03:38 PM
  3. Replies: 5
    Last Post: 09-30-2014, 07:00 PM
  4. [SOLVED] Transfer Userform data on 1 worksheet to different worksheet (empty row = wrong sheet)
    By HeyInKy in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-26-2014, 10:08 AM
  5. Need Help Creating A Macros To Transfer Data From Worksheet to Worksheet
    By rodtay5283 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-27-2014, 02:11 AM
  6. Moving data from worksheet to columns
    By nobleprince in forum Excel General
    Replies: 4
    Last Post: 02-03-2012, 07:26 PM
  7. Macro transfer when moving worksheet.
    By JesseFB in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 05-07-2005, 03:15 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