+ Reply to Thread
Results 1 to 7 of 7

Copy range till last row from sheet x to sheet y.

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Canada
    MS-Off Ver
    Excel 2007
    Posts
    440

    Copy range till last row from sheet x to sheet y.

    Hi,

    I am currently using this macro to copy from 1 sheet to another sheet, but what can I do if I want the Sheet 2 to copy only all data value starting Column B1 till last data on last row. Not only data on B1, but starting from B1 to end of column data and row data..then paste into another sheet 3 on A1 as value.

      Application.ScreenUpdating = False
      Worksheets("Sheet2").Range("B1:Y34").Value = Worksheets("Sheet3").Range("A1").Value
      Application.ScreenUpdating = True
    Please hope some help.

    Thank.

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Copy range till last row from sheet x to sheet y.

    Try this way...

    Application.ScreenUpdating = False
        Worksheets("Sheet2").Range("B1").CurrentRegion.Copy Worksheets("Sheet3").Range("A1")
    Application.ScreenUpdating = True


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Forum Expert millz's Avatar
    Join Date
    08-14-2013
    Location
    Singapore
    MS-Off Ver
    Excel, Access 2016
    Posts
    1,694

    Re: Copy range till last row from sheet x to sheet y.

    Hi Sixthsense, that would also include row 1 and column A if there are any data.

    I suggest this way:

    Application.ScreenUpdating = False
    If Application.CountA(rows(1), Columns(1)) = 0 Then
        Worksheets("Sheet2").Range("B1").CurrentRegion.Copy Worksheets("Sheet3").Range("A1")
    Else
        With Worksheets("Sheet2").Range("A1").CurrentRegion
            .Offset(1, 1).Resize(.rows.Count - 1, .Columns.Count - 1).Copy Worksheets("Sheet3").Range("A1")
        End With
    End If
    Application.ScreenUpdating = True
    多么想要告诉你 我好喜欢你

  4. #4
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Canada
    MS-Off Ver
    Excel 2007
    Posts
    440

    Re: Copy range till last row from sheet x to sheet y.

    This will copy the data with formula, but I want the final data on Sheet 3 to be only paste as value...

  5. #5
    Forum Expert millz's Avatar
    Join Date
    08-14-2013
    Location
    Singapore
    MS-Off Ver
    Excel, Access 2016
    Posts
    1,694

    Re: Copy range till last row from sheet x to sheet y.

    Then:

    Application.ScreenUpdating = False
    If Application.CountA(rows(1), Columns(1)) = 0 Then
        Worksheets("Sheet2").Range("B1").CurrentRegion.Copy
        Worksheets("Sheet3").Range("A1").PasteSpecial xlPasteValues
    Else
        With Worksheets("Sheet2").Range("A1").CurrentRegion
            .Offset(1, 1).Resize(.rows.Count - 1, .Columns.Count - 1).Copy
            Worksheets("Sheet3").Range("A1").PasteSpecial xlPasteValues
        End With
    End If
    Application.ScreenUpdating = True

  6. #6
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Canada
    MS-Off Ver
    Excel 2007
    Posts
    440

    Re: Copy range till last row from sheet x to sheet y.

    This way does not copy from B1, but it copy from B2?? The header on B1 was not copied to the Sheet 3. or nothing on column 1 was copied to Sheet 3.

  7. #7
    Forum Expert millz's Avatar
    Join Date
    08-14-2013
    Location
    Singapore
    MS-Off Ver
    Excel, Access 2016
    Posts
    1,694

    Re: Copy range till last row from sheet x to sheet y.

    Oh, my bad, kept thinking it was row 2 onwards.

    Application.ScreenUpdating = False
    If Application.CountA(Columns(1)) = 0 Then
        Worksheets("Sheet2").Range("B1").CurrentRegion.Copy
        Worksheets("Sheet3").Range("A1").PasteSpecial xlPasteValues
    Else
        With Worksheets("Sheet2").Range("A1").CurrentRegion
            .Offset(, 1).Resize(, .Columns.Count - 1).Copy
            Worksheets("Sheet3").Range("A1").PasteSpecial xlPasteValues
        End With
    End If
    Application.ScreenUpdating = True

+ 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: 2
    Last Post: 01-22-2014, 05:36 PM
  2. [SOLVED] How to copy data range form one sheet to other sheet with desire Reverse Transpose ?
    By nur2544 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-18-2013, 12:30 PM
  3. Replies: 3
    Last Post: 11-20-2012, 02:25 PM
  4. [SOLVED] Search for heading in data sheet and copy range to corresponding sheet in master workbook
    By sans in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 07-07-2012, 10:02 AM
  5. [SOLVED] Macro: Dynamic creation of sheet based on cell value then copy range to the new sheet
    By BeachRock in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 03-15-2012, 11:31 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