End of line

Ampleford

Active Member
Joined
Mar 26, 2002
Messages
380
I want a macro which will paste information to the next free row in a column, creating a database...

I can get it to go to the last row by using the command -

Selection.End(xlDown).Select

but I can't get it to go one more row below.

Can anyone help ?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
On 2002-09-28 04:43, Ampleford wrote:
I want a macro which will paste information to the next free row in a column, creating a database...

I can get it to go to the last row by using the command -

Selection.End(xlDown).Select

but I can't get it to go one more row below.

Can anyone help ?

Using your selection.end(xldown) to get your last cell then use the activecell.offset(1,0) to go to the next line down

HTH

Derrick
 
Upvote 0
Hello,

You can use Offset.

Selection.End(xlDown).Offset(1, 0).Select

Where 1 is the number of rows to offset from the original cell, 0 is the number of columns.
 
Upvote 0

Forum statistics

Threads
1,222,900
Messages
6,168,926
Members
452,227
Latest member
sam1121

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