Lotus {end}{up}

Mike Callahan

New Member
Joined
Jun 16, 2008
Messages
17
Lotus use -end-up- macro to insert data under the last field in a worksheet so I could list new data in sequence. In Excel, how do I do this in a Visual Basic macro?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
This will return the last filled row in column A

Code:
Dim Lastrow As Long
Lastrow = Range("A" & Rows.Count).End(xlUp).Row
 
Upvote 0
In sheet2 where ever the curser resides, the paste occures:

Sub Macro1()

Dim Lastrow As Long
Sheets("Sheet1").Select
Range("A4").Select
Selection.Copy
Sheets("Sheet2").Select
Lastrow = Range("A" & Rows.Count).End(xlUp).Row
ActiveSheet.Paste
End Sub
 
Upvote 0
Try this - note that it is rarely necessary to Select something to work with it.


Code:
Sub Macro1()
Dim Lastrow As Long
Lastrow = Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Row
Sheets("Sheet1").Range("A4").Copy Destination:=Sheets("Sheet2").Range("A" & Lastrow + 1)
Application.CutCopyMode = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,567
Messages
6,120,268
Members
448,953
Latest member
Dutchie_1

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