How do I find the next higher number in a sequence?

C

CasaJay

This should be easy, but I'm stumped (relatively new user). I have a column
of sequential numbers (except that the last numbers are 0) and I want to
select the next highest number in that range.
 
C

CasaJay

Not really, but thank you for the response. That returns the highest value
in the range +1, but not the NEXT highest value, which is what I need. In
other words, if A1=1, A2=5, and A3=7 I'm looking for the value in A2.
 
C

CasaJay

And also, I agree that I posed my question incorrectly... more specifically,
if forinstance B1=A1, then I want to return the next highest value, meaning
the value in A2, since my numbers are sequential (with the exception being
that the last numbers can be 0).
 
S

SimonCC

Try:
=IF(B1=A1,LARGE(A:A,2),"")

-Simon

CasaJay said:
And also, I agree that I posed my question incorrectly... more specifically,
if forinstance B1=A1, then I want to return the next highest value, meaning
the value in A2, since my numbers are sequential (with the exception being
that the last numbers can be 0).
 

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

Top