last filled in cell of column A

AjayMishra

New Member
Joined
Sep 14, 2022
Messages
1
Office Version
  1. 365
Find last filled in cell of column A, select columns A to G and paste in row 1?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Paste in row 1 where? , is it in a new workbook or new sheet?
 
Upvote 0
Welcome to the Board!

Finding the last populated cell in column A and copying that row from columns A-G can be done like this:
VBA Code:
    Dim lr As Long
    
'   Find last row in column A with data
    lr = Cells(Rows.Count, "A").End(xlUp).Row
    
'   Copy columns A-G from last row
    Range(Cells(lr, "A"), Cells(lr, "G")).Copy

You didn't say on which sheet you wanted to paste it (as Kerryx pointed out already).
But the paste part should be pretty trivial. Just select the sheet and first cell you want to paste it to, and then add in an:
VBA Code:
Activesheet.Paste
command.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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