Calculated fields
A calculated field is an additional data field with values calculated using a formula.
You can use calculated fields to create new dimensions and measures. The data source remains unchanged.
To write formulas, you can use the existing dataset fields, parameters, constants, and functions.
You can create calculated fields in the dataset or wizard interface:
- Calculated fields from a dataset are available in all charts above this dataset.
- Calculated fields from the wizard are only available for saved charts.
Calculated fields are marked with
Calculated fields in datasets
You can add new fields to a dataset field list.
When creating a formula, you can use any dataset field, including the calculated fields you previously created. In a formula, you can also use parameters created at the dataset level.
After creating a calculated field and saving the dataset, the field becomes available to all charts and dashboard selectors based on that dataset.
To hide fields in the wizard, enable the Do not display in wizard option when creating them.
Calculated fields in charts
You can add new fields when creating and editing charts in the wizard:
- In the list of fields from a dataset.
- In the visualization section.
When creating a formula, you can use any dataset field, including the calculated fields you previously created. In a formula, you can also use the parameters of the chart or dataset based on which the chart is created.
If a field is created in a chart, it will not be available to dashboard selectors and other charts.
Warning
In multi-dataset charts, calculated fields are not applicable to fields from multiple datasets.
Functions
Functions are the principal components used for creating formulas. You can use them to perform various operations on data fields.
The list of available functions depends on the data source. For more information, see Function Availability.
Warning
Avoid calculation loops: in a formula, you cannot use a field that uses the same formula to calculate its own value.
Notation format
Write formulas according to the following requirements:
- Specify function arguments in parentheses, e.g.,
YEAR([DATE1])
. Separate multiple arguments with commas. - Specify field names in square brackets, e.g.,
[CustomerID]
. - Make sure to enter the values of fields and constants in a valid format. For example, use a period as a decimal separator:
0.123
.
Note
- Field name syntax is case-sensitive. For example, if the formula uses
[NAME]
, while the dataset contains only[Name]
, the formula field will be highlighted in red. - Function syntax is not case-sensitive. For example,
count
andCOUNT
will perform the same operation.
For more information on format, types of accepted arguments, and returned function values, use the Reference button when adding a field in the formula editor interface.
How to create a calculated field
You can create calculated fields in the dataset or wizard interface.
Warning
If you use a new DataLens object model with workbooks and collections:
- In the left-hand panel, select
Collections and workbooks. - Open the appropriate workbook and select an object.
Follow the guide from step 2.
- In the left-hand panel, click
Datasets and select the dataset you need. If you do not have a dataset, create one. - In the top-right corner, click
Add field. - Enter a name for the field.
- Select Formula as the data source for the field.
- Add the formula using data source functions.
- Click Create. The field will appear in the dataset.
Warning
If you use a new DataLens object model with workbooks and collections:
- In the left-hand panel, select
Collections and workbooks. - Open the appropriate workbook and select an object.
Follow the guide from step 2.
- In the left-hand panel, click
Charts and select the chart created in the wizard . - On the left side of the screen above the list of dataset fields, click
and select Field. - Enter a name for the field.
- Enter the required formula.
- Click Create. The field will appear in the list on the left. You can use it in a chart.