Add, edit, and troubleshoot calculated fields

Learn how to create and modify calculated fields in your reports and data sources.

In this article :

  • Create a calculated field in your data source
  • Edit a calculated field in your data source
  • Create a chart-specific calculated field
  • Edit a chart-specific calculated field
  • Reuse a chart-specific calculated field
  • Troubleshoot calculated fields
  • Related resources

Create a calculated field in your data source

You must have edit rights to the data source to create and edit calculated fields.

Calculated fields in data sources are available in any report that uses that data source. To create a calculated field:

  1. Edit your data source.
  2. On the top right, click "Create new" button ADD A FIELD .
  3. Enter a Name for this field:
    1. This is the default name that appears in your reports. You can change this for individual charts by editing the name in the dimension and metric picker.
    2. The field name must be unique.
    3. You can't use a reserved keyword as the field name.
  4. Enter a Formula:
    1. To select a dimension, metric, or function, start typing its name.
      1. If you have multiple fields with similar names, or fields that duplicate part of a function name, for example, Date and Date2, type part of the name, then scroll through the list and select the field you want.
      2. You can also click a field in the Available Fields list on the left to add it to the formula editor.
    2. On the bottom right, click SAVE (or UPDATE if you are editing an existing field).
    3. Adjust the Type, Aggregation, and Show As options, as appropriate.

The calculated field editor.

Edit a calculated field in your data source

Calculated fields appear in the data source with an fx symbol. To edit the formula, click fx  on the right. This brings up the formula editor, where you can adjust the field as needed.

Edit a calculated field

Create a chart-specific calculated field

Chart-specific calculated fields only exist in the chart in which you create them.

To create a chart-specific calculated field:

  1. Edit the report.
  2. Select a chart.
  3. In the properties panel on the right, click +Add dimension or + Add metric, depending on the kind of field you want to create.
  4. At the bottom of the field list, click CREATE FIELD.
  5. Enter a field name.
  6. Enter your formula.

    You can use the same operators and functions as data source calculated fields. However, you can't reference other chart-specific calculated fields.

    You can use chart-specific calculated fields with blended data.

  7. Adjust the Type, Aggregation, and Show As options, as appropriate.
  8. Click APPLY.

Edit a chart-specific calculated field

Chart-specific calculated fields appear in the chart properties panel with an fx symbol on the left. To edit the formula, click fx. This brings up the formula editor, where you can adjust the field as needed.

Reuse a chart-specific calculated field

Chart-specific calculated fields only exist in the chart in which you create them. You can't directly reuse chart-specific calculated field, or reference it in other calculated fields. However, you can copy a chart containing chart-specific calculated fields. The copy will contain any calculated fields defined in the original. You can then edit them as needed in the new chart.

Troubleshoot calculated fields

If there is an error in a calculated field formula, you'll see a warning message, and you won't be able to save the field. Here are a few reasons why a formula might be rejected:

Error message or reason Possible Solutions
Invalid field name.

A valid field name automatically appears as a green or blue chip in the formula editor.

Check the spelling and any special characters in the field name.
Invalid function name.

A valid function automatically appears in uppercase green letters in the formula editor.

Check the spelling of the function name.
Missing quotes.

Literal strings must be quoted with matched pairs of single or double quotes.

Make sure all string literals are properly quoted.
Mismatched parentheses.

When nesting functions, it's easy to miss a closing parentheses.

Make sure you have the same number of opening parentheses as closing parentheses, and that they are in the right spots.
Function argument type mismatch.

Functions expect arguments to be of a particular type. If there's a mismatch, it can cause an error. For example, trying to use a Date function on a Text dimension.

Choose the correct input values. You can possibly use CAST() to change the input value type.
Re-aggregating metrics is not supported.

Aggregation functions can't be applied to already aggregated data. This includes most metrics found in Google Analytics, and Google Ads. For example, Sessions is already summed in your data set, so the formula SUM(Sessions) will produce an error.

This limitation comes from the underlying data set. Any solution will involve changing how the data appears there, if possible.
An expression can have either metrics, or dimensions, but not both.

You can't mix dimensions and metrics in function arguments.

Make sure you are using the appropriate function for your data. For example, use CONCAT() to append text to a Text field, instead of using +.
Metric expressions and aggregations are not allowed in this expression.

You're creating a new chart-specific calculated dimension, but the result of the formula you've provided would create a metric.

Try creating the new field as a metric instead.
  • Dimensions and metrics
  • Create a data source

Was this helpful?

How can we improve it?