Written by Allen Wyatt (last updated March 15, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
Excel includes the FACT worksheet function which returns the factorial of a value. (The factorial of the number X is the result of multiplying 1 * 2 * 3 ... * X.) Sabeesh wonders if there is a similar function that will return the sum of the values (1 + 2 + 3 ... + X) instead of the result of the values.
There is no such function built into Excel, but a quick mathematical formula will do the trick. The proper terminology to refer to this type of sum is a "triangular number." This derives from the fact that if the sum was represented with objects, they could always be arranged in the form of a triangle. For example, if you had 5 objects on the bottom row, 4 on the next, 3 three on the third, 2 on the fourth, and 1 on the top row, you have a triangle. Summing the number of objects (5 + 4 + 3 + 2 + 1) is what Sabeesh wants to do.
The answer to this problem can be expressed as a mathematical formula, reportedly discovered by Carl Friedrich Gauss. (Which is the source for another name of this type of number: a Gaussian Summation.) Note that the sum of opposite rows in the above example are always the same: 5 + 1 is the same as 4 + 2. This is true regardless of the number of rows; if there were 100 rows, then 100 +1 is the same result as 99 + 2, 98 + 3, 97 + 4, etc. What you end up with is 50 "pairs" of numbers equal to 1 more than the upper limit of your range.
The upshot of all this—without going through a lot of explanation—is that you can find the triangular number for any positive value (where you start at 1 and end with X) in the following manner:
=X*(X+1)/2
Thus, if you had a number in cell A1 and you wanted to know the sum of the range of 1 through that number, you could use this formula:
=A1*(A1+1)/2
This formula provides a simple way to determine the sum required, without the necessity of resorting to using a macro.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9998) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Finding the Sum of a Sequential Integer Range.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!
When analyzing your numeric data, you may need to figure out the largest and smallest numbers in a set of values. If you ...
Discover MoreFor some operations and functions, Excel allows you to use wild card characters. One such character is an asterisk. What ...
Discover MoreIf you keep a lot of data in Excel, you may be interested in figuring out when that data surpasses a threshold. This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2025-03-15 07:24:36
Andy
The direct formula is the best in this case.
However, =SUM(SEQUENCE(A1)) will also work, and you could use the different arguments of the SEQUENCE function if the problem is slightly different, for example adding up every second number.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments