+ Reply to Thread
Results 1 to 4 of 4

Finding empty cell in list

  1. #1
    Don
    Guest

    Finding empty cell in list

    Ok, I know I've seen this before, but I'm sorry, but I've lost my reference.

    Please, would someone post the snipit for finding the next empty cell in a
    list/column.

    Thanks,
    Don



  2. #2
    Rick Hansen
    Guest

    Re: Finding empty cell in list

    Hi Don, Try this....

    Dim LastRow as Long
    LastRow = Range("A2").End(xlDn).offset(1,0).Row

    This will find first empty in the list/Column or find the bottom of the list


    HTH, Rick




    "Don" <[email protected]> wrote in message
    news:[email protected]...
    > Ok, I know I've seen this before, but I'm sorry, but I've lost my

    reference.
    >
    > Please, would someone post the snipit for finding the next empty cell in a
    > list/column.
    >
    > Thanks,
    > Don
    >
    >




  3. #3
    Gary Keramidas
    Guest

    Re: Finding empty cell in list

    something like this

    Sub test()
    Dim LastRow As Long
    LastRow = Range("A1").End(xlDown)(2).Row
    Debug.Print LastRow
    End Sub


    --


    Gary


    "Don" <[email protected]> wrote in message
    news:[email protected]...
    > Ok, I know I've seen this before, but I'm sorry, but I've lost my reference.
    >
    > Please, would someone post the snipit for finding the next empty cell in a
    > list/column.
    >
    > Thanks,
    > Don
    >




  4. #4
    Saruman
    Guest

    Re: Finding empty cell in list

    Just use CTRL & either the up or down arrow after selecting any cell in a
    column

    A White
    ----------------------------------------------------------------------------
    -------
    All Outgoing Mail Checked By Norton Anti-Virus 2003
    ----------------------------------------------------------------------------
    -------

    "Don" <[email protected]> wrote in message
    news:[email protected]...
    > Ok, I know I've seen this before, but I'm sorry, but I've lost my

    reference.
    >
    > Please, would someone post the snipit for finding the next empty cell in a
    > list/column.
    >
    > Thanks,
    > Don
    >
    >




+ 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