ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Formular to read the last entry in a column (https://www.excelbanter.com/excel-discussion-misc-queries/150648-formular-read-last-entry-column.html)

Dhew

Formular to read the last entry in a column
 
I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???

Toppers

Formular to read the last entry in a column
 
=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Felix

Formular to read the last entry in a column
 
Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Gary''s Student

Formular to read the last entry in a column
 
For a good general discussion of the last value, see:

http://www.xldynamic.com/source/xld.LastValue.html


--
Gary''s Student - gsnu200734


"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Toppers

Formular to read the last entry in a column
 
=Lookup(99^99,1:1)

will return last value in row 1

"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Dhew

Formular to read the last entry in a column
 
Excellent thank you, but is there any way to make it so that it doesnt
include 0.00's

"Toppers" wrote:

=Lookup(99^99,1:1)

will return last value in row 1

"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Toppers

Formular to read the last entry in a column
 
try:

=INDEX(A:A,MAX(IF(A1:A65535<0,ROW(A1:A65535))))

Enter with Ctrl+Shift+Enter

"Dhew" wrote:

Excellent thank you, but is there any way to make it so that it doesnt
include 0.00's

"Toppers" wrote:

=Lookup(99^99,1:1)

will return last value in row 1

"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Dhew

Formular to read the last entry in a column
 
EXCELLENT. Thank you worked like a dream...


VERY MANY THANKS...

"Toppers" wrote:

try:

=INDEX(A:A,MAX(IF(A1:A65535<0,ROW(A1:A65535))))

Enter with Ctrl+Shift+Enter

"Dhew" wrote:

Excellent thank you, but is there any way to make it so that it doesnt
include 0.00's

"Toppers" wrote:

=Lookup(99^99,1:1)

will return last value in row 1

"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???


Loadmaster

Formular to read the last entry in a column
 
Thank-you this was one of the formulas I wanted for my log book of flying
hours. It worked great!

"Dhew" wrote:

EXCELLENT. Thank you worked like a dream...


VERY MANY THANKS...

"Toppers" wrote:

try:

=INDEX(A:A,MAX(IF(A1:A65535<0,ROW(A1:A65535))))

Enter with Ctrl+Shift+Enter

"Dhew" wrote:

Excellent thank you, but is there any way to make it so that it doesnt
include 0.00's

"Toppers" wrote:

=Lookup(99^99,1:1)

will return last value in row 1

"Felix" wrote:

Brilliant! I can use this formula, too...

I tried to convert it for rows, but did not suceed. Is there an answer for
this?
--
Felix


"Toppers" wrote:

=LOOKUP(99^99,H:H)

"Dhew" wrote:

I am trying to calculate a "latest result" in which I need to read the last
(Not greatest or smallest) figure in a column:
e.g. column H has five figures in it, 100, 75, 70, 50, 65. I want a cell
that will show me the answer or 65, and if another figure is added
afterwards, for my latest result cell to show whatever is in this figure.

How can I do this???



All times are GMT +1. The time now is 07:48 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com