Macro Help

RichardJ

Board Regular
Joined
May 23, 2004
Messages
74
I have a macro that creates a new list on a new sheet after matching information in one coloum of the master sheet. This way, if C4 = "FCA" then it first breaks down the master list into FCA via using filter, into only FCA related rows and then copies all the information into a new sheet. However, in this macro how can I add a feature that would allow the user to always reach the end of the list on the new sheet, so that they do not have to scroll down for 20 seconds.

Application.CutCopyMode = False
Sheets("FCA").Select
Range("A146").Select
In this code section what should I mention in Range line so that it cursor always ends up at the last item.

Each day items are added to the master list so cannot give macro a commad to reach certain cell from the F5 feature.

Thanks
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
To find the last used cell in column A for example, use:

[A65536].end(xlup).select

Is that what you mean?
 
Upvote 0

Forum statistics

Threads
1,202,967
Messages
6,052,850
Members
444,603
Latest member
dustinjmangum

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