View Single Post
  #7   Report Post  
dihirod
 
Posts: n/a
Default

Perfect! many many thanks.

"Bob Phillips" wrote:

That sounds like you have all numbers or all text.

If all numbers, and always all numbers, use

=INDEX(C5:C10,MAX(MATCH(9.99999999999999E+307,C5:C 10)))

If all text, and always all text, use

=INDEX(C5:C10,MAX(MATCH("ZZZZZZZZZZZZZZZZZZZZ",C5: C10)))

If it could be both, but coul;d be all numbers or all text, use

=INDEX(C5:C10,MAX(IF(ISERROR(MATCH({"ZZZZZZZZZZZZZ ZZZZZZZ"},C5:C10)),MATCH(9
..99999999999999E+307,C5:C10),IF(ISERROR(LOOKUP(9. 99999999999999E+307,C5:C10)
),MATCH("ZZZZZZZZZZZZZZZZZZZZ",C5:C10),MATCH({"ZZZ ZZZZZZZZZZZZZZZZZ",9.99999
999999999E+307},C5:C10)))))



--

HTH

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


"dihirod" wrote in message
...
Many thanks. I tried this myself, but I got, and still get #N/A which I
understand is a MATCH error value. (The first one worked fine as

described,
it returned the value from the bottom of the worksheet.) What am I doing
wrong with this one?

"Bob Phillips" wrote:


=INDEX(C5:C10,MAX(MATCH({"ZZZZZZZZZZZZZZZZZZZZ",9. 99999999999999E+307},C5:C1
0)))

--

HTH

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


"dihirod" wrote in message
...
Many thanks. I stupidly omiteed to add that the list of entries does

not
comprise the entire column - only part of it (let's say C5 to c10)

after
that, there's oodles of other things in the same column. I'd like to

know
how
to restrict the lookup to that small section.

"Bob Phillips" wrote:

This will get you the last value in a column



=INDEX(A:A,MAX(MATCH({"ZZZZZZZZZZZZZZZZZZZZ",9.999 99999999999E+307},A:A)))

--

HTH

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


"dihirod" wrote in message
...
I have several cells reading data from a single cell - the last

one in
a
column - the value of which keeps changing as data is added. How

do I
ensure
that the several cells read only from the last entry in the

column,
and
not
from older obsolete entries?