Find the difference between the high & low value of a given set.

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

Guest

With a set of four cells I want to find the the highest value and lowest
valuve then find the difference between them.
 
Hi Larry

One way
=MAX(A1:A4)-MIN(A1:A4)

or =LARGE(A1:A4,1)=SMALL(A1,A4,1)
 
If the numbers are in A1 thru A4
=MAX(A1:A4)
=MIN(A1:A4)
=MAX(A1:A4)-MIN(A1:A4)
 

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