Language: Deutsch English















Last Update: 2024 - 01 - 25








Access - Calculated columns in Queries

by Philipp Stiefel, originally published 2016-11-07

last revision on 2021-01-19

A key difference between Microsoft Access and Excel is the use of calculations in Tables (Sheets in Excel). In an Access database you should see a table as a simple storage container for data. If you need to do calculations based on data in the table, you should do that in a query based on that table. You can then display the data of the query, including the calculated fields, in a form or report.

In this article I’m going to show you the basics of creating calculated columns in queries. I’ll show you how to use simple calculations directly in the query as well as calling a custom VBA-Function to do the calculation.

Simple calculations in Access queries

You can use Expressions in queries. An Expression is like a formula that will produce a result in the context of the running query. An Expression can be a simple mathematical calculation, but likewise a function call of one or even several nested functions.

The simplest possible query with a calculation is this:

SELECT 1 + 1
Simplest query calculation - Result

This query can be only written and executed in the SQL View of a query. The graphical query designer requires at least one table as data source for the query.

Usually you want to calculate based on the data in a table anyway. So the simple sample above is rather far-fetched.

A very realistic, but still pretty simple calculation, would be the calculation of a gross price based on the net price stored in a table. The relevant column in my demo table is named “NetPrice”. I can use this column name to refer to this column in an Expression.

The formula for to determine the gross price is [NetPrice] + [NetPrice] / 100 * 20. (20 is the current UK VAT rate.) You can use exactly this formula as an expression for a calculated field in an Access query. Just enter it instead of a column name as Field in the Access Query Designer.

That’s going to look like this:

Query with gross price calculation

The text “GrossPrice” followed by a colon in front of our Expression defines an alias name for this column in the result view of the query. This is just a plain text to identify the column. I could have written “WhatsItsName:” or nothing at all and the result of the calculation would be all the same. If we do not define any name at for the column, Access will do that for us and will name it “Expr1000” or similar. – I strongly recommend you always define an alias name for any calculated column.

In SQL the same query can be written like this:

SELECT ID, ItemName, NetPrice, [NetPrice] + [NetPrice] / 100 * 19 AS GrossPrice FROM tblItems;

The term “AS GrossPrice” is the definition of the alias name for this column in the results.

Here are the results of this query:

Query results for gross price calculation (wrong)

So far so good. Technically ok, but…

In the UK for example, there is not just one flat VAT rate on all goods. So our calculation is wrong from a domain knowledge point of view. There are goods with a reduced VAT rate (5%) and some goods (e.g. postage stamps) and services with a 0% VAT rate. – You are still required to charge the 0% VAT though.

We should store the applicable VAT rate in the database table as well. To keep the example simple I add an additional column to the articles table, which stores the VAT rate per article. - In a real database this simple solution would not be ideal.

Table with VAT rate column

The improved expression is looking like this then: [NetPrice] + [NetPrice] / 100 * [VATRate]. We enter this adjusted formula into the query field in the Access Query Designer.

As I used the datatype Number/Decimal for the new column VATRate, Access does not know to format the result of the Expression automatically as currency anymore. To achieve that, I explicitly set the format to currency for this column in the Property Sheet. - In most circumstances I would rather implement such formatting logic in the UI (form or report) than in a query.

Query Designer with calculation and format property

And here is the result:

Correct gross price calculation results

The column VATRate does not need to be displayed in the results to be used in the calculation. I left it out of the sample to demonstrate this.

If you use the name of other columns in an Expression, the values to calculate the result will always be those of the current record. If you need the values of another record in your calculation, you’ll have to use function to retrieve the required value. – That’s something I’m going to show in another article someday.

Video Tutorial on Calculated Fields in Queries

The content of this part of the article, using expressions for calculations, is also available as a video tutorial. You can watch it here.

Functions in Queries

To roundup this article, I’m going to show you how to use a custom function inside your query. To keep things simple, I write a simple function that is just doing the calculation of the gross price once again.

To do this, I create a new VBA Module and write our function in it.

Two things are important here:

  1. The module must not have the same name as the function itself.
  2. You can only use Public functions from a normal module (opposed to a Class Module) directly inside a query.

I name my function CalculateGrossPrice. I can call this function inside a query by using this name.

Here is the function:

VBA function for gross price calculation

In the Query Designer the arguments for the function written inside brackets behind the functions name and are separated by a comma. The complete Expression for the function call is:

CalculateGrossPrice ([NetPrice],[VATRate])

Query Designer - Function call in query

The SQL code for this query is this:

SELECT ID, ItemName, NetPrice, CalculateGrossPrice ([NetPrice],[VATRate]) AS GrossPrice FROM tblItems;

The results of this query should look exactly the same as with the previous query containing the complete calculation inside the query.

You would use the exact same approach to call any of the countless built-in functions of Access and VBA inside a query. You are not at all limited to mathematical calculations, but can use any function that has text based arguments and a return value that can be represented as text.

Video Tutorial on Functions in Queries

The content of this part of the article, using VBA functions for calculations, is also available as a video tutorial. You can watch it here:

Performance Considerations

You might have heard or read that using functions in queries will be bad for the performance of the query. – It’s not as simple as that. Of course, functions and other calculations need some computation time to establish the results of the calculation/function. If you only apply functions and calculations to the output column of your query, the performance penalty will be linear. E.g., if your function needs 1 millisecond to compute a single result and your query returns 1000 records, the query will take 1 second longer to retrieve the full result set. – Be aware that Access fetches or refreshes results when scrolling in a larger list of records and (re-)executes functions and calculations while doing so. – Overall, the performance penalty in this scenario is reasonable and should come with no surprise.

The situation is completely different if you use a function in the where condition of your query. Then it not only needs to be applied to the records in the final result of the query, but to a much larger number, up to the total number of records in the source tables of the query. It also may make it impossible for the database engine to use indexes when processing the query. The performance penalty for the query caused by the functions or calculation may be quite severe.

I wrote dedicated text on query performance tuning rules, which also extensively covers the effect of functions in queries.

Share this article: Share on Facebook Tweet Share on LinkedIn Share on XING

Subscribe to my newsletter

*

I will never share your email with anyone. You can unsubscribe any time.
This email list is hosted at Mailchimp in the United States. See our privacy policy for further details.

Benefits of the newsletter subscription



© 1999 - 2024 by Philipp Stiefel - Privacy Policiy