Consulting

Results 1 to 4 of 4

Thread: Excel formula re: last entry

  1. #1
    VBAX Regular
    Joined
    Nov 2004
    Posts
    10
    Location

    Excel formula re: last entry

    Hi everyone,
    Help please...I know this should be simple.
    I need to report only the LAST value entered in a column on a different worksheet, ignoring values in cells above and ignoring blank cells following.
    Thank you,
    pe

  2. #2
    Site Admin
    Jedi Master
    VBAX Guru Jacob Hilderbrand's Avatar
    Joined
    Jun 2004
    Location
    Roseville, CA
    Posts
    3,712
    Location
    If the column of data is A then try this formula.

    =INDIRECT("A" & MATCH(9.99999999999999E+307,A:A,TRUE))

  3. #3
    Site Admin
    Urban Myth
    VBAX Guru
    Joined
    May 2004
    Location
    Oregon, United States
    Posts
    4,940
    Location
    Hi pehl, welcome!

    Another alternative could be ...


    =INDEX(A:A,MATCH(9.999999999E+307,A:A))

    This doens't use the INDIRECT function like Jacob's and can be copied over columns. Depends on your situation, but it's an alternative.

  4. #4
    VBAX Regular
    Joined
    Nov 2004
    Posts
    10
    Location
    I kept getting a circular reference with the INDIRECT function but the INDEX function works--thank you so much!

    pehl

Posting Permissions

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