Forum Discussion
staciehamilton2370
Aug 10, 2022Copper Contributor
finding 3 largest and 3 smallest numbers in a spreadsheet
Hi. Im relatively new to excel formulas. Im trying to pull out the 3 largest and 3 smallest numbers in my spreadsheet. How do I do this/
- Aug 10, 2022
You can use the LARGE and SMALL functions for this.
To return the 3 largest values in the range A1:Z100:
=LARGE(A1:Z100,{1,2,3})
And the three smallest:
=SMALL(A1:Z100,{1,2,3})
Warning: if there are ties, the results might be unexpected.
HansVogelaar
Aug 10, 2022MVP
You can use the LARGE and SMALL functions for this.
To return the 3 largest values in the range A1:Z100:
=LARGE(A1:Z100,{1,2,3})
And the three smallest:
=SMALL(A1:Z100,{1,2,3})
Warning: if there are ties, the results might be unexpected.
- staciehamilton2370Aug 10, 2022Copper ContributorThank you so much!!