Find last row with data

rollingzep

Board Regular
Joined
Nov 18, 2013
Messages
223
Office Version
  1. 365
Platform
  1. Windows
Hi,

I import data from a large text file daily with over 200,000 rows to a workbook, WB1. In my VBA code, I import all the fields and then delete the fields and format them.
Of the 30 odd fields, I finally get the data on the 3 columns, This Workbook, i use for the backend data. On column F, G and H, I have 150 rows of saved data, which are
constant and which I copy and add to the imported rows, A, B and C manually.
is there a way to do this via code? I need to copy and paste this data after the last identified row of Col A.

I know to derive the last row containing data, using Range("A" & Rows.Count).End(xlUp).EntireRow.Select.
How to identify the next row to this last row and add data from cols, G to H?

TIA
 
OK, try this:
VBA Code:
    Range("F1:H150").Copy Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
 
Upvote 1

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type

Forum statistics

Threads
1,223,237
Messages
6,170,928
Members
452,366
Latest member
TePunaBloke

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