The currently selected value(s) for custom filters, time range, aggregation and number of rows in the results can be used in a report title, description or no-data message.
To display selected filter values, put the name of the filter in curly braces in the text and it will be replaced with the currently selected value:
Airports in {selected_countries}
You can provide a default value to use in case the filter has no value selected like this:
Airports in {selected_countries|All countries}
Here is the complete overview of the possible patterns:
{<filter_name>} |
Replaced with the currently selected value or values (concatenated with comma) or empty string if no value is selected |
{<filter_name>|<default value>} |
Replaced with the currently selected value or values (concatenated with comma) or the "default_value" string if no value is selected |
{aggregation} |
Replaced with the current aggregation |
{timerange} |
Replaced with a formatted string for the currently selected timerange |
{result_rows} |
Replaced with the number of rows in the current report SQL results: "1", "2", etc. |
{result_rows_label} |
Replaced with a complete and correctly pluralized label: "1 row", "2 rows", etc. |