Copy value to and add to bottom of list

G

Guest

Guest
I have been attempting to copy some values scattered over a speadsheet and place them in a 'summary list'. I have recorded a macro in the hope that the 'End Down' and another 'Down' would send me to the bottom of the list, since this obviously varies with added figures. Needless to say my cunning plan failed and I am looking for some guidance as to where to look next.
Thanking you in anticipation.
Sam
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
This will take you to the next available cell in column A
Range("A65536").Select
Selection.End(xlUp).Select
ActiveCell.Offset(1, 0).Select
 
Upvote 0
Cheers Paul,
I see you go bottom to top, is that 'better' than top down?
I seem not to have appreciated the use of the Offset function. I was looking in MS Help but it is OK if you know what you are looking for!
Thanks again
Sam
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,038
Members
448,940
Latest member
mdusw

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