+ Reply to Thread
Results 1 to 4 of 4

latest entry

  1. #1
    Registered User
    Join Date
    10-08-2005
    Posts
    5

    latest entry

    How do I get the last entry in a fixed column? For example:

    The column is 10 rows.

    Row 1 is the number 25
    Row 2 is 30
    The rest are blanks.

    What is the function to pick the latest entry that being 30.

    Then when row 3 changes to 45 then the "choose" function would select the latest entry that now being 45.

    Thanks

    Bill Andrus

  2. #2
    Peo Sjoblom
    Guest

    Re: latest entry

    If there are no blanks

    =INDEX(A:A,COUNT(A:A))

    if there are blanks

    =LOOKUP(2,1/(A1:A1000<>""),A1:A1000)


    --

    Regards,

    Peo Sjoblom


    "billandrus" <[email protected]> wrote
    in message news:[email protected]...
    >
    > How do I get the last entry in a fixed column? For example:
    >
    > The column is 10 rows.
    >
    > Row 1 is the number 25
    > Row 2 is 30
    > The rest are blanks.
    >
    > What is the function to pick the latest entry that being 30.
    >
    > Then when row 3 changes to 45 then the "choose" function would select
    > the latest entry that now being 45.
    >
    > Thanks
    >
    > Bill Andrus
    >
    >
    > --
    > billandrus
    > ------------------------------------------------------------------------
    > billandrus's Profile:

    http://www.excelforum.com/member.php...o&userid=27945
    > View this thread: http://www.excelforum.com/showthread...hreadid=478927
    >




  3. #3
    Bob Phillips
    Guest

    Re: latest entry

    =INDIRECT("B"&MAX(IF(NOT(ISBLANK(B1:B10)),ROW(1:10))))

    which is an array formula, so commit with Ctrl-Shift-Enter

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "billandrus" <[email protected]> wrote
    in message news:[email protected]...
    >
    > How do I get the last entry in a fixed column? For example:
    >
    > The column is 10 rows.
    >
    > Row 1 is the number 25
    > Row 2 is 30
    > The rest are blanks.
    >
    > What is the function to pick the latest entry that being 30.
    >
    > Then when row 3 changes to 45 then the "choose" function would select
    > the latest entry that now being 45.
    >
    > Thanks
    >
    > Bill Andrus
    >
    >
    > --
    > billandrus
    > ------------------------------------------------------------------------
    > billandrus's Profile:

    http://www.excelforum.com/member.php...o&userid=27945
    > View this thread: http://www.excelforum.com/showthread...hreadid=478927
    >




  4. #4
    Gord Dibben
    Guest

    Re: latest entry

    Bill

    =LOOKUP(9.99999999999999E+307,F:F) will return the last numeric value in
    column F

    =LOOKUP(9.99999999999999E+307,F1:F10) returns last numeric value in F1:F10


    =LOOKUP(REPT("z",255),B2:B10000) will return the last text entry in the
    range.


    Gord Dibben Excel MVP

    On Mon, 24 Oct 2005 15:07:51 -0500, billandrus
    <[email protected]> wrote:

    >
    >How do I get the last entry in a fixed column? For example:
    >
    >The column is 10 rows.
    >
    >Row 1 is the number 25
    >Row 2 is 30
    >The rest are blanks.
    >
    >What is the function to pick the latest entry that being 30.
    >
    >Then when row 3 changes to 45 then the "choose" function would select
    >the latest entry that now being 45.
    >
    >Thanks
    >
    >Bill Andrus



+ 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