Range("A65536").End(xlUp).Select [NT]
an additional question..Juan..other columns ???!!!
This takes care of a specific column. What if there are other columns do you have to hard code for each one..or is there a simpler way where I can press a shortcut key on any column and that will take me to the final cell for that column?
Re: an additional question..Juan..other columns ???!!!
If you need this in code, use
Cells(65536,ActiveCell.Column).End(xlUp).Select
if you need to use it in Excel directly, you can achieve this by pressing Control + Down, this will take you to the last used cell before a blank cell appears.
Juan Pablo G.