Function: SUMIF

SUMIF function can sum up the values in a range of cells that match a single criteria. In this guide, we’re going to show you how to use the SUMIF function and also go over some tips and error handling methods. Supported versions All Excel versions Syntax SUMIF(range,...
How to sum by week number

How to sum by week number

To sum by week number is a bit different than How to sum by month. Instead of finding start and end dates of date range, we focus on exact week number by using WEEKNUM function. Syntax =SUMIFS( range of values to sum, range of week number helper column, current week)...
How to SUM 2d ranges with SUMPRODUCT

How to SUM 2d ranges with SUMPRODUCT

Summing values by a condition may sound easy. If not, please see Crunch Data Even Faster with the SUMIFS Function article as well. You can easily sum values by condition(s) with SUMIF and SUMIFS functions; with a limitation. The sum range and criteria ranges should...
How to SUM values if date is less than

How to SUM values if date is less than

How much did you spend until last year, or what is the total of X until Y? SUMIF and SUMIFS functions can help you to sum values in your data tables. Syntax =SUMIFS(values to sum range, date range, <maximum date) =SUMIF(date range, <maximum date, values to sum...
How to SUM values if date is greater than

How to SUM values if date is greater than

Using the versatile SUMIF function, see how you can create cell totals from a certain date. Creating a YTD (year-to-date) reports has never been easier. Syntax =SUMIFS(values to sum range, date range, >minimum date) =SUMIF(date range, >minimum date, values to...
How to calculate running totals with SUM

How to calculate running totals with SUM

Using the SUM formula this way will allow your data tables to grow and include any new items by running totals. Syntax =SUM(Absolute reference, Relative reference) Steps Type SUM function with a range that contains only single cell =SUM(C3:C3) Make range’s first cell...
Extract Data Quickly From Tables with Excel's SUMIF Function

Extract Data Quickly From Tables with Excel's SUMIF Function

SUMIF function is, in a way, a combination of SUM and IF statements. The formula SUMs up the values of a range of cells, IF certain criteria is met. In other words, data that pass the logic test gets to be added up (or another column of your choice, that corresponds...