Hi,

It's always funny how the most basic problems are the hardest to
figure out.

I need a macro to go to the first row of a colum when a user selects a
cell below.

For example, if I have selected cell D9, or D12, or D1000, I need it
to go to cell D1. Or, if I have selected cell E9, E12, or E1000 I need
it to go to E1.

Thanks for your help,
Derrick

RE: Select First Row of Active Column by DownThePaint

DownThePaint
Fri Mar 14 14:04:01 CDT 2008

Hi Derrick;

Function GoToTop
cells(1,activecell.column).Select
End Function

"derrick.perkins@gmail.com" wrote:

> Hi,
>
> It's always funny how the most basic problems are the hardest to
> figure out.
>
> I need a macro to go to the first row of a colum when a user selects a
> cell below.
>
> For example, if I have selected cell D9, or D12, or D1000, I need it
> to go to cell D1. Or, if I have selected cell E9, E12, or E1000 I need
> it to go to E1.
>
> Thanks for your help,
> Derrick
>

Re: Select First Row of Active Column by derrick

derrick
Fri Mar 14 14:21:48 CDT 2008

On Mar 14, 3:04=A0pm, DownThePaint
<DownThePa...@discussions.microsoft.com> wrote:
> Hi Derrick;
>
> Function GoToTop
> =A0 =A0 =A0cells(1,activecell.column).Select
> End Function
>
>
>
> "derrick.perk...@gmail.com" wrote:
> > Hi,
>
> > It's always funny how the most basic problems are the hardest to
> > figure out.
>
> > I need a macro to go to the first row of a colum when a user selects a
> > cell below.
>
> > For example, if I have selected cell D9, or D12, or D1000, I need it
> > to go to cell D1. Or, if I have selected cell E9, E12, or E1000 I need
> > it to go to E1.
>
> > Thanks for your help,
> > Derrick- Hide quoted text -
>
> - Show quoted text -

Thanks for your help - I knew it was something simple. Have a great
weekend.