You are on page 1of 4

11/21/12

Application.DSum Method (Access)

Application.DSum Method (Access)


Office 2013 This topic has not yet been rated You can use the DSum function to calculate the sum of a set of values in a specified set of records (a domain). .

Syntax
expression .DSum(Expr, Domain, Criteria) expression A variable that represents an Application object.

Parameters
Name Expr Required/Optional Required Data Type String Description An expression that identifies the numeric field whose values you want to total. It can be a string expression identifying a field in a table or query, or it can be an expression that performs a calculation on data in that field . In expr, you can include the name of a field in a table, a control on a form, a constant, or a function. If expr includes a function, it can be either built-in or user-defined, but not another domain aggregate or SQL aggregate function. A string expression identifying the set of records that constitutes the domain. It can be a table name or a query name for a query that does not require a parameter. An optional string expression used to restrict the range of data on which the DSum function is performed. For example, criteria is often equivalent to the WHERE clause in an SQL expression, without the word WHERE. If criteria is omitted, the DSum function evaluates expr against the entire domain. Any field that is included in criteria must also be a field in domain; otherwise, the DSum function returns a Null.

Domain

Required

String

Criteria

Optional

Variant

Return Value
Variant
msdn.microsoft.com/en-us/library/office/ff193998.aspx 1/4

11/21/12

Application.DSum Method (Access)

Remarks
For example, you could use the DSum function in a calculated field expression in a query to calculate the total sales made by a particular employee over a period of time. Or you could use the DSum function in a calculated control to display a running sum of sales for a particular product. If no record satisfies the criteria argument or if domain contains no records, the DSum function returns a Null. Whether you use the DSum function in a macro, module, query expression, or calculated control, you must construct the criteria argument carefully to ensure that it will be evaluated correctly. You can use the DSum function to specify criteria in the Criteria row of a query, in a calculated field in a query expression, or in the Update To row of an update query. Note You can use either the DSum or Sum function in a calculated field expression in a totals query. If you use the DSum function, values are calculated before data is grouped. If you use the Sum function, the data is grouped before values in the field expression are evaluated. You may want to use the DSum function when you need to display the sum of a set of values from a field that is not in the record source for your form or report. For example, suppose you have a form that displays information about a particular product. You could use the DSum function to maintain a running total of sales of that product in a calculated control. If you need to maintain a running total in a control on a report, you can use the RunningSum property of that control if the field on which it is based is included in the record source for the report. Use the DSum function to maintain a running sum on a form.

Example
The following example totals the values from the Freight field for orders shipped to the United Kingdom. The domain is an Orders table. The criteria argument restricts the resulting set of records to those for which ShipCountry equals UK.
VBA

D i mc u r XA sC u r r e n c y c u r X=D S u m ( " [ F r e i g h t ] " ," O r d e r s " ," [ S h i p C o u n t r y ]=' U K ' " ) The next example calculates a total by using two separate criteria. Note that single quotation marks (') and number signs (#) are included in the string expression, so that when the strings are concatenated, the string literal will be enclosed in single quotation marks, and the date will be enclosed in number signs.
VBA

D i mc u r XA sC u r r e n c y c u r X=D S u m ( " [ F r e i g h t ] " ," O r d e r s " ,_


msdn.microsoft.com/en-us/library/office/ff193998.aspx 2/4

11/21/12

Application.DSum Method (Access)

" [ S h i p C o u n t r y ]=' U K 'A N D[ S h i p p e d D a t e ]># 1 1 9 5 # " )

The following examples show how to use various types of criteria with the DSum function.

Sample code provided by:

The UtterAccess community | About the Contributors

'* * * * * * * * * * * * * * * * * * * * * * * * * * * 'T y p i c a lU s e 'N u m e r i c a lv a l u e s .R e p l a c e" n u m b e r "w i t ht h en u m b e rt ou s e . v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ]=n u m b e r " ) 'S t r i n g s . 'N u m e r i c a lv a l u e s .R e p l a c e" s t r i n g "w i t ht h es t r i n gt ou s e . v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ] =' s t r i n g ' " ) 'D a t e s .R e p l a c e" d a t e "w i t ht h es t r i n gt ou s e . v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ] =# d a t e # " ) '* * * * * * * * * * * * * * * * * * * * * * * * * * * '* * * * * * * * * * * * * * * * * * * * * * * * * * * 'R e f e r r i n gt oac o n t r o lo naf o r m 'N u m e r i c a lv a l u e s v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ]="&F o r m s ! F o r m N a m e ! C o n t r o l N a m e ) 'S t r i n g s v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ]=' "&F o r m s ! F o r m N a m e ! C o n t r o l N a m e&" ' " ) 'D a t e s v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a ]=# "&F o r m s ! F o r m N a m e ! C o n t r o l N a m e&" # " ) '* * * * * * * * * * * * * * * * * * * * * * * * * * * '* * * * * * * * * * * * * * * * * * * * * * * * * * * 'C o m b i n a t i o n s 'M u l t i p l et y p e so fc r i t e r i a v a r i a b l e=D S u m ( " [ F i e l d N a m e ] " ," T a b l e N a m e " ," [ C r i t e r i a 1 ]="&F o r m s ! [ F o r m N a m e ] ! [ C o n t r o l 1 ]_ &"A N D[ C r i t e r i a 2 ]=' "&F o r m s ! [ F o r m N a m e ] ! [ C o n t r o l 2 ]&" ' " _ &"A N D[ C r i t e r i a 3 ]= # "&F o r m s ! [ F o r m N a m e ] ! [ C o n t r o l 3 ]&" # " ) 'U s et w of i e l d sf r o mas i n g l er e c o r d .
msdn.microsoft.com/en-us/library/office/ff193998.aspx 3/4

11/21/12

Application.DSum Method (Access)

v a r i a b l e=D S u m ( " [ L a s t N a m e ]&' ,'&[ F i r s t N a m e ] " ," t b l P e o p l e " ," [ P r i m a r y K e y ]=7 " ) 'E x p r e s s i o n s v a r i a b l e=D S u m ( " [ F i e l d 1 ]+[ F i e l d 2 ] " ," t a b l e N a m e " ," [ P r i m a r y K e y ]=7 " ) 'C o n t r o lS t r u c t u r e s v a r i a b l e=D S u m ( " I I f ( [ L a s t N a m e ]L i k e' S m i t h ' ,' T r u e ' ,' F a l s e ' ) " ," t a b l e N a m e " ," [ P r i m a r y K e y ]=7 " ) '* * * * * * * * * * * * * * * * * * * * * * * * * * *

About the Contributors


UtterAccess is the premier Microsoft Access wiki and help forum. Click here to join.

See also
Concepts
Application Object Members Application Object

Community Additions
2012 Microsoft. All rights reserved.

msdn.microsoft.com/en-us/library/office/ff193998.aspx

4/4

You might also like