+ Reply to Thread
Results 1 to 2 of 2

Value of last populated cell in column

  1. #1
    Registered User
    Join Date
    03-05-2009
    Location
    Melbourne,Australia
    MS-Off Ver
    Excel 2007
    Posts
    4

    Value of last populated cell in column

    Hi,
    Can someone tell me how I can obtain the value of the last populated cell in a specific column please?

    Many thanks

    Chris

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Value of last populated cell in column

    Depends really... if the data types are constant... ie if always same datatype:

    TEXT:
    =LOOKUP(REPT("z",255),C:C)

    NUMBER:
    =LOOKUP(9.99999999999999E+307,C:C)

    LOGICAL:
    =LOOKUP(TRUE,C:C)

    If it's varied and depending on if you have Blanks interspersed in your range or not:

    NO BLANKS INTERSPERSED IN RANGE
    =INDEX(C:C,COUNTA(C:C))

    YES BLANKS
    =LOOKUP(2,1/(C:C<>""),C:C)

+ 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