Help!!! (Functions)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In a report i have I was using the MAX function, which i thought was pulling the last value in a column. Instead that function just picks the highest value. Is there a function in Excel, that pulls the last value it sees in a range of cells to use to make a total??
HELP!!!!
Christen
 
Hi

Try this:
=INDEX(G:G,COUNTIF(G:G,"<>"),1)

--
Andy.


Christen said:
In a report i have I was using the MAX function, which i thought was
pulling the last value in a column. Instead that function just picks the
highest value. Is there a function in Excel, that pulls the last value it
sees in a range of cells to use to make a total??
 
Try using match to find a number larger than is possible for the row and
index to get the info.
=INDEX(B:B,MATCH(999999999,B:B))
--
Don Guillett
SalesAid Software
(e-mail address removed)
Christen said:
In a report i have I was using the MAX function, which i thought was
pulling the last value in a column. Instead that function just picks the
highest value. Is there a function in Excel, that pulls the last value it
sees in a range of cells to use to make a total??
 
Don

I was working on the theory that there wouldn't be any!!

Cheers
 
findS a number larger than is possible
ie: It is looking to MATCH the number which is not there.
 
=INDEX(G:G,MATCH(999999999,G:G))

Works like a wonder Mr. Guillett. I like how it can also be used fo
rows.

Andy B's formulas works with text if there are no blanks
 
Yes, but sometimes those pesky end users touch the delete key by mistake. Me
too. <G>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top