Adding the 5 lowest numbers out of 8 entries when there are duplicate numbers

How do I get numbers to add the 5 smallest numbers out of 8 when there are two of the same number? I'm trying to use the small function and it will not count the duplicate number.

iMac (2017 – 2020)

Posted on Sep 4, 2025 10:51 AM

Reply
Question marked as Top-ranking reply

Posted on Sep 4, 2025 11:23 AM

This is pretty easy to do using SUM() and SMALL()


SMALL() returns the nth smallest number in a set, so:


=SMALL(B1:B20,5)


would return the 5th smallest number.


To get a range of numbers, enter them as an array (requires Numbers 14.4?)


=SMALL(B1:B20,{1,2,3,4,5}))


would return the smallest 5 values, including duplicates.


Now you can SUM them:


=SUM(SMALL(B1:B20,{1,2,3,4,5}))
6 replies
Question marked as Top-ranking reply

Sep 4, 2025 11:23 AM in response to CaptRich2

This is pretty easy to do using SUM() and SMALL()


SMALL() returns the nth smallest number in a set, so:


=SMALL(B1:B20,5)


would return the 5th smallest number.


To get a range of numbers, enter them as an array (requires Numbers 14.4?)


=SMALL(B1:B20,{1,2,3,4,5}))


would return the smallest 5 values, including duplicates.


Now you can SUM them:


=SUM(SMALL(B1:B20,{1,2,3,4,5}))

Adding the 5 lowest numbers out of 8 entries when there are duplicate numbers

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.