RANGE

gib6717

New Member
Joined
Sep 18, 2003
Messages
14
I was wondering if Excel had a function that would find the range of a row of numbers (highest minus the lowest) I have a large sample and it would be cumbersome and error prone to do it manually. Thanks
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Take a look at the MIN and MAX functions in Excel help. It should do exactly this.
 
Upvote 0
Hi Gib,

This formula:

Code:
=LARGE(A1:A24,1)

will return the 1st largest number in a range...in this case A1:A24. The ,1 is telling it to return the 1st largest number, a 2 would be the second largest number...etc...if that makes sense... :eek:

Hope this helps..

Dave
 
Upvote 0
If you are just looking for the number of rows in a range, you can use the ROW function:
=ROW(reference)

If the LARGE function is what you were looking for there is another function SMALL(array,k) for the lower values in a range.
 
Upvote 0
Thanks all :pray:
The max,min combo is going to work the best though
max (a1:a5) - min (a1:a5)
Thanks again...
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,200
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top