Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How To Insert and Customize Sparklines in Excel
  • How to create a Histogram in Excel
  • How To Compare Two Lists in Excel
  • How to Create Gantt Chart in Excel
  • How to create Gauge Chart in Excel

References

  • How to use Excel TRANSPOSE Function
  • How to retrieve first match between two ranges in Excel
  • How to get last column number in range in Excel
  • Offset in Excel
  • How to use Excel ROW Function

Data Validations

  • Excel Data validation only dates between
  • Excel Data validation unique values only
  • Excel Data validation allow uppercase only
  • Excel Data validation number multiple 100
  • Excel Data validation allow weekday only

Sum range with INDEX in Excel

by

This tutorial shows how to calculate Sum range with INDEX in Excel using the example below;

 Formula

=SUM(INDEX(data,0,column))

Explanation

To sum all values in a column or row, you can use the INDEX function to retrieve the values, and the SUM function to return the sum.  This technique is useful in situations where the row or column being summed is dynamic, and changes based on user input.  In the example shown, the formula in H6 is:

=SUM(INDEX(data,0,H5))

where “data” is the named range C5:E9.

How this formula works

The INDEX function looks up values by position. For example, this formula retrieves the value for Acme sales in Jan:

=INDEX(data,1,1)

The INDEX function has a special and non-obvious behavior: when the row number argument is supplied as zero or null, INDEX retrieves all values in the column referenced by the column number argument. Likewise, when the column number is supplied as zero or nothing, INDEX retrieves all values in the row referenced by the row number argument:

=INDEX(data,0,1) // all of column 1
=INDEX(data,1,0) // all of row 1

In the example for formula, we supply the named range “data” for array, and we pick up the column number from H2. For row number, we deliberately supply zero. This causes INDEX to retrieve all values in column 2 of “data’. The formula is solved like this:

=SUM(INDEX(data,0,2))
=SUM({9700;2700;23700;16450;17500})
=70050

Other calculations

You can use the same approach for other calculations by replacing SUM with AVERAGE, MAX, MIN, etc. For example, to get an average of values in the third month, you can use:

=AVERAGE(INDEX(data,0,3))

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • How to use Excel AND Function
  • XOR function: Description, Usage, Syntax, Examples and Explanation
  • SWITCH function example in Excel
  • IF with wildcards in Excel
  • How to return blank in place of #DIV/0! error in Excel

Date Time

  • Convert text date dd/mm/yy to mm/dd/yy in Excel
  • Pad week numbers with zeros in Excel
  • Get first day of month in Excel
  • Display Date is same month in Excel
  • Convert text timestamp into time in Excel

Grouping

  • Group times into 3 hour buckets in Excel
  • Group numbers at uneven intervals in Excel
  • How to randomly assign people to groups in Excel
  • How to randomly assign data to groups in Excel
  • Group arbitrary text values in Excel

General

  • With vs Without Array Formula in Excel
  • Find, Trace and Correct Errors in Excel Formulas using ‘Formula Auditing’
  • Basic numeric sort formula in Excel
  • How to calculate percentage of total in Excel
  • Count cells that do not contain errors in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning