MeadInKent
| Feedback | Database functions | SumProduct function | Compare conditional sum functions |

Excel Functions: Using Array formulas

Click to see examples of several functions which can apply conditions to SUM calculations.

An array is simply a series of data, which in a spreadsheet is normally stored in a range of adjacent cells. Excel however can do special things with arrays that may be used as a flexible alternative to the database functions such as DSUM.

An array in Excel

Many functions such as SUM or MAX can incorporate selection criteria rules and may be combined with the IF function using arrays. This means that the sum or average function will be performed on only those items that meet a criteria. In other words, the values supplied as an argument to the sum function are conditional upon a value in an another column or location. The following example should give you an insight as to the potential uses of array functions.

A table of values (E5:G12) can be interrogated using the criteria values entered into cells F14 and H14 in order to extract summary information. The first query (in cell G16) returns the total number of items processed by operator 'AK' throughout the whole table. The second (G17) gives the highest number of items processed on a day in April (month 4).


1 {=SUM(IF(G6:G12=$H$14, F6:F12, 0))} Sum values in F6:F12 where the operator initials in G6:G12 are equal to H14
2 {=MAX(IF(MONTH(E6:E12)=F14, F6:F12, 0))} The maximum value in F6:F12 where the corresponding month in E6:E12 equals F14
3 {=SUM((G6:G12=$H$14)*(F6:F12))} Sum values in F6:F12 where corresponding values in G6:G12 are equal to H14
4 {=MAX((MONTH(E6:E12)=F14)*(F6:F12))} The maximum value in F6:F12 where the corresponding month in E6:E12 equals F14
5 {=SUM((MONTH(E6:E12)=F14)*(G6:G12=H14)*(F6:F12))} Sum value in F6:F12 where the corresponding month in E6:E12 equals F14 AND the operators in G6:G12 are equal to H14

The formulas in rows 1 and 2 perform the same calculation as rows 3 and 4. The multiplication character (*) acts as an 'AND' instruction. The formula in row 5 contains two different criteria.

All of these are Array formulas and this is evidenced by the curly brackets {braces}. When you enter an array formula there are three rules you must follow:

These array functions can be used in a range of situations where the criterion ranges required by database functions (eg DSUM) would be unwieldy. In other situations the SUMPRODUCT, SUMIF or COUNTIF functions may be better still.

save this free reference page with examples of 8 Excel functions

Click to open this PDF document

A peculiar use of an array function is to add up a range of numbers which have been entered as text. If a range of numeric values have been converted and formatted using the TEXT function they can no longer be added using the SUM function. The following formula however should do the trick {= SUM(VALUE(range_of_cells)) }. Remember to use <Ctrl> + <Shift> + <Enter>. In normal use the VALUE function converts a text number into a numeric value.

The ability of array formulas to contain a logical IF() function means that they can also incorporate the ISERROR() function and avoid errors caused when trying to SUM() a range of values which contain errors such as #DIV/0! or #N/A!. e.g. {=SUM(IF(ISERROR(C12:C16)=TRUE, 0, F6:F12)*(F6:F12))}

The SUMIF function

If there is a requirement to SUM a range of numbers and apply a single criteria, SUMIF() may be the simplest solution. It takes the form =SUMIF(range, criteria, [sum_range]) where Range is the range of cells you want evaluated, Criteria defines which cells are to be included and Sum_Range is the range of values to be summed if different to the main Range.

1 =SUMIF(G6:G12, H14, F6:F12) 17 Sum values in F6:F12 where the operator initials in G6:G12 are equal to H14
2 =SUMIF(G6:G12, "AK", F6) 17 Sum values in F6:F12 where the operator initials in G6:G12 are equal to 'AK'
3 =SUMIF(G6:G12, "A*", F6:F12) 17 Sum values in F6:F12 where the operator initials in G6:G12 is like 'A*'
4 =SUMIF(F6:F12, "<" & F14) 5 Sum values in F6:F12 where the value is less than F14

SUMIF() is able to incorporate wildcards (such as in row 3 above) which is an advantage over SUMPRODUCT() or array formulas.

A study has shown that 90% of spreadsheets with more than 150 rows contain errors. View information on creating well designed spreadsheets.

Note that Excel will assume that the Sum_Range is the same size as the Range. In row 2 (above) the F6 Sum_Range parameter is taken to be the top of the range of cells to be summed. In row 4 the absence of a separate Sum_Range means that Excel will sum the main Range.


excel Get this information as a document
accompanied by Excel worksheets
Document is in PDF format Click here for details about obtaining this
file. It has been rewritten for Excel 2010.

file: xlarrays.htm © meadinkent.co.uk 2016 Last updated Feb14 CMIDX S2 P6 Y