Thursday 10 July 2014

Excel DSUM Function

Microsoft Excel DSUM Function

Basic Description

The Excel Dsum function calculates the sum of a field (column) in a database for selected records, that satisfy user-specified criteria.
The function is very similar to the Excel Sumifs function, which was first introduced in Excel 2007.
The syntax of the Excel Dsum function is :
DSUM( database, field, criteria )
where the arguments are:

database-A range of cells containing the database. The top row of the database should specify the field names.
field-The field (column) within the database, that is to be summed.
This can either be a field number, or can be the field name (ie. the header in the top row of the database) encased in quotes (eg. "Area", "Quarter", etc)
criteria-A range of cells that contain the criteria, to specify which records should be included in the calculation.
The range can include one or more criteria, which are presented as a field name in one cell and the condition for that field in the cell below.
eg.
QuarterArea
>2South

Wildcards
You can also use the following wildcards in text-related criteria:
?    -    matches any single character
*    -    matches any sequence of characters
if you do actually want to find the ? or * character, type the ~ symbol before this character in your search.
eg. the condition "A*e" will match all cells containing a text string beginning with "A" and ending in "e".
The criteria supplied beneath each field heading can be either:
-a numeric value (including an integer, decimal, date, time, or logical value) (eg. 10, 01/01/2011, FALSE)
or
-a text string (eg. "Name", "Saturday")
or
-an expression (eg. ">12", "<>0")

Note that the Excel database functions are not case sensitive. So, for example, the criteria ="South" will be satisfied by cells containing the text "South" or "south".

Excel Dsum Function Examples

ABCD
1QuarterAreaSales Rep.Sales
21NorthJeff$223,000
31NorthChris$125,000
41SouthCarol$456,000
51SouthTina$289,000
62NorthJeff$322,000
72NorthChris$340,000
82SouthCarol$198,000
92SouthTina$222,000
103NorthJeff$310,000
113NorthChris$250,000
123SouthCarol$460,000
133SouthTina$395,000
144NorthJeff$261,000
154NorthChris$389,000
164SouthCarol$305,000
174SouthTina$188,000
The following examples are based on the simple database on the right, which stores the sales figures for four sales representatives, working in the North or South area, over the four quarters of a year.

Example 1

In the example below, the Dsum function is used to calculate the total sales in quarters 3 & 4, in the "North" area. The criteria are specified in cells F1 - G2 and the Dsum formula is shown in cell F3.
FG
1QuarterArea
2>2North
3=DSUM( A1:D17, "Sales", F1:G2 )

The above Dsum function calculates the sum of the values in cells D10, D11, D14 & D15, and therefore returns the value $1,210,000

Example 2

In the example below, the Dsum function is used to calculate the total sales in quarter 3, by sales reps with names beginning with the letter "C". Again, the criteria are specified in cells F1 - G2 and the Dsum formula is shown in cell F3.
FG
1QuarterSales Rep.
23C*
3=DSUM( A1:D17, "Sales", F1:G2 )

The above Dsum function sums the values in cells D11 and D12 and so returns the value $710,000

Note that, in the above two examples, instead of typing in "Sales" for the Field argument, we could have simply used the number 4 (to denote the 4th column of the database).

No comments:

Post a Comment