Copy data from numerious tabs and Paste into one tab

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,338
Office Version
  1. 365
Platform
  1. Windows
I need to grab data from numerous tabs. I have some code that does that but I need to slightly modify it.

Code:
Sub Consolidate_BOEs()

'
    Dim ws As Worksheet
'
    For Each ws In Sheets
'
        If ws.Range("U1") = "54-TPL" Then
            ws.Range("B11:U1000").Copy
            Sheets("BOE Spreads").Cells(Rows.Count, "B").End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
        End If
'
     Next ws
'
End Sub

It would be better if it only copied down to the last row (column C) instead of all the way to row 1000. Is this possible?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about
Code:
Sub Consolidate_BOEs()
    Dim ws As Worksheet
    Dim Lr As Long
    
   For Each ws In Worksheets
      If ws.Range("U1") = "54-TPL" Then
         Lr = ws.Range("C" & Rows.Count).End(xlUp).Row
         ws.Range("B11:U" & Lr).Copy
         Sheets("BOE Spreads").Cells(Rows.Count, "B").End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
      End If
   Next ws
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top