+ Reply to Thread
Results 1 to 5 of 5

Go To last blank cell

  1. #1
    Richard
    Guest

    Go To last blank cell

    I have a CommandButton1 on Sheet1. I'd like to tell it, once clicked to go
    to the last Blank cell in Sheet1 Column A. Thanks in advance!

  2. #2
    Peo Sjoblom
    Guest

    Re: Go To last blank cell

    Do you really mean last as opposed to first so if you have data in A1:A10
    and the first blank cell is A11 you want to go to A65536?

    --

    Regards,

    Peo Sjoblom

    Excel 95 - Excel 2007
    Northwest Excel Solutions
    www.nwexcelsolutions.com
    "It is a good thing to follow the first law of holes;
    if you are in one stop digging." Lord Healey


    "Richard" <[email protected]> wrote in message
    news:[email protected]...
    >I have a CommandButton1 on Sheet1. I'd like to tell it, once clicked to go
    > to the last Blank cell in Sheet1 Column A. Thanks in advance!




  3. #3
    Richard
    Guest

    Re: Go To last blank cell

    Yes, the first blank cell, sorry!

    "Peo Sjoblom" wrote:

    > Do you really mean last as opposed to first so if you have data in A1:A10
    > and the first blank cell is A11 you want to go to A65536?
    >
    > --
    >
    > Regards,
    >
    > Peo Sjoblom
    >
    > Excel 95 - Excel 2007
    > Northwest Excel Solutions
    > www.nwexcelsolutions.com
    > "It is a good thing to follow the first law of holes;
    > if you are in one stop digging." Lord Healey
    >
    >
    > "Richard" <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a CommandButton1 on Sheet1. I'd like to tell it, once clicked to go
    > > to the last Blank cell in Sheet1 Column A. Thanks in advance!

    >
    >
    >


  4. #4
    Peo Sjoblom
    Guest

    Re: Go To last blank cell

    Cells(Rows.Count, "A").End(xlUp).offset(1,0).Select

    --

    Regards,

    Peo Sjoblom

    Excel 95 - Excel 2007
    Northwest Excel Solutions
    www.nwexcelsolutions.com
    "It is a good thing to follow the first law of holes;
    if you are in one stop digging." Lord Healey


    "Richard" <[email protected]> wrote in message
    news:[email protected]...
    > Yes, the first blank cell, sorry!
    >
    > "Peo Sjoblom" wrote:
    >
    >> Do you really mean last as opposed to first so if you have data in A1:A10
    >> and the first blank cell is A11 you want to go to A65536?
    >>
    >> --
    >>
    >> Regards,
    >>
    >> Peo Sjoblom
    >>
    >> Excel 95 - Excel 2007
    >> Northwest Excel Solutions
    >> www.nwexcelsolutions.com
    >> "It is a good thing to follow the first law of holes;
    >> if you are in one stop digging." Lord Healey
    >>
    >>
    >> "Richard" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a CommandButton1 on Sheet1. I'd like to tell it, once clicked to
    >> >go
    >> > to the last Blank cell in Sheet1 Column A. Thanks in advance!

    >>
    >>
    >>




  5. #5
    Gord Dibben
    Guest

    Re: Go To last blank cell

    Sub findbottom()
    ActiveSheet.Cells(Rows.Count, 1).End(xlUp) _
    .Offset(1, 0).Select
    End Sub


    Gord Dibben MS Excel MVP

    On Sat, 29 Apr 2006 11:52:01 -0700, Richard <[email protected]>
    wrote:

    >Yes, the first blank cell, sorry!
    >
    >"Peo Sjoblom" wrote:
    >
    >> Do you really mean last as opposed to first so if you have data in A1:A10
    >> and the first blank cell is A11 you want to go to A65536?
    >>
    >> --
    >>
    >> Regards,
    >>
    >> Peo Sjoblom
    >>
    >> Excel 95 - Excel 2007
    >> Northwest Excel Solutions
    >> www.nwexcelsolutions.com
    >> "It is a good thing to follow the first law of holes;
    >> if you are in one stop digging." Lord Healey
    >>
    >>
    >> "Richard" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I have a CommandButton1 on Sheet1. I'd like to tell it, once clicked to go
    >> > to the last Blank cell in Sheet1 Column A. Thanks in advance!

    >>
    >>
    >>



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1