Skip to main content
Solved

Sum the two smallest values between three values

  • September 22, 2023
  • 2 replies
  • 26 views

Forum|alt.badge.img+3

Hello,

I need to sum the two smallest values between three values.
Example:
- Value 1: 10
- Value 2: 20
- Value 3: 30

The two smallest values are "Value 1" and "Value 2".

How to do this via a formula (or other

Best answer by Alessio_Monino

Hi @ChaumeilDigital,

This is a possible solution to create the calculation - you could create a formula that sums up all three values, then subtracts the largest value among the three using MAX() -> this gives us the sum of the two smallest values among the three (because it subtracts the largest)

I hope this helps!

Website: https://alessiomonino.com
Calendly: https://alessiomonino.com/contact
Email: alessio.monino@gmail.com

2 replies

Forum|alt.badge.img+11
  • Participating Frequently
  • Answer
  • September 22, 2023

Hi @ChaumeilDigital,

This is a possible solution to create the calculation - you could create a formula that sums up all three values, then subtracts the largest value among the three using MAX() -> this gives us the sum of the two smallest values among the three (because it subtracts the largest)

I hope this helps!

Website: https://alessiomonino.com
Calendly: https://alessiomonino.com/contact
Email: alessio.monino@gmail.com


Forum|alt.badge.img+3
  • Author
  • New Participant
  • September 22, 2023

Hi @ChaumeilDigital,

This is a possible solution to create the calculation - you could create a formula that sums up all three values, then subtracts the largest value among the three using MAX() -> this gives us the sum of the two smallest values among the three (because it subtracts the largest)

I hope this helps!

Website: https://alessiomonino.com
Calendly: https://alessiomonino.com/contact
Email: alessio.monino@gmail.com


Thanks for your quick reply !