Advanced formulas
Last updated
Was this helpful?
Last updated
Was this helpful?
You can create advanced formulas that use field math, combine multiple aggregate functions, and use conditional logic.
You can add, subtract, multiply and divide numeric data fields. You can also use +
with text data fields to concatenate.
You can perform mathematical operations with data fields and constants. For example, if you have sales
and cost
in your data, you can add a Profit
column like so:
Here are the underlying components:
If you divide by zero, you’ll get a null. If you do not specify an aggregate function in a measure, sum()
will be implied.
Aggregation functions let you add up values for a field. If no aggregation function is provided for a measure, sum()
will be used.
Function
Examples
Sum
sum(sales_dollars)
or sum(revenue - expenses)
Minimum
min(age)
Maximum
max(age)
Average
avg(home_value)
Count
count(student_name)
or count(*)
Count only distinct items
count_distinct(student_name)
Median
median(sales_dollars)
Percentiles expressed as percentileN
where N can be between 1 and 99.
percentile1(age)
or percentile75(sales_dollars)
Percentiles can also be expressed as an expression and a desired percentile.
percentile(age, 0.25)
Standard Deviation. Calculates the sample standard deviation for an expression.
stddev(age)
When you upload a CSV file, percentiles and medians are calculated as approximate values. The statistically exact value may be slightly different.
Conversion functions change the value for a field. It might change to a different type or to a different time period.
Function
Examples
Round to the nearest week (requires a date field)
week(sales_date)
Round to the nearest month (requires a date field)
month(sales_date)
Round to the nearest quarter (requires a date field)
quarter(sales_date)
Round to the nearest year (requires a date field)
year(sales_date)
Convert a numeric value to a string
string(zipcode)
Convert a string value to an integer
int(age)
Calculate an age at the current date.
age(birth_date)
Calculate the difference between dates
datediff(end_date, start_date)
Extract a component of a date
extract(YEAR, birth_date)
Return the last date in a period
lastday(sales_date, MONTH)
note: this can be used only on bigquery and snowflake databases
You can use +
to concatenate text data fields together. For example, if State
has state names and StateAbbr
has state abbreviations, you can create a newStates
column that combine state names with state abbreviations to display like Georgia (GA)
.
Here are the underlying components:
You must use double quotes in field expressions to define string constants. Single quotes will not work.
If you want to concatenate fields that do not have the string
data type, you'll need to first convert the field to a string using the conversion function string()
. For example, if you want to concatenate address
, state
, city
, and zip
together, but zip
is not a string, you'll need to use string(zip)
.
You can combine multiple aggregate functions together. For example, if you have sales_revenue
and salesperson_id
in your data, you can add an Sales per salesperson
measure using the sum()
and count_distinct()
aggregate functions together like so:
Here are the underlying components:
You can add conditional logic to formulas. Conditions are true/false statements that can be expressed in your formulas. Here are some examples of conditions:
To use conditions in formulas, use the if
function. This function contains pairs of conditions and values. A final value is used if none of your conditions match. Here is the if
function pattern:
Here are examples for formulas that use the if
function:
Here's an example of an conditional logic in a measure:
Here's an example of conditional logic in a dimension:
Conditions are defined as [field] [comparison] [values]. These comparisons can be ANDed or ORed together.
Conditions
Examples
Greater than a number
sales > 20
or sales > 20.5
Greater than or equal to
sales >= 20
Equal to a number or a string (strings must be surrounded by double quotes)
age=20
or state="Tennessee"
Not equal to a number or string
age != 20
or state != "Tennessee"
Checking if a value is null
state IS NULL
Checking if a value is in a list of values
state IN ("TN", "GA", "FL")
Checking if a value is True or False
flag = True
or flag = False
Comparing dates.
sales_date BETWEEN "ONE WEEK AGO" and "TODAY"
or sales_date BETWEEN "2020-01-01" AND "2020-06-30"
Intelligent date ranges (use PREVIOUS, THIS, or NEXT to define an offset and DAY, MONTH, MTD, QTR, YEAR, or YTD to define the period).
sales_date IS THIS MONTH
or sales_date IS LAST MONTH
ANDing two conditions
sales > 1000 AND sales_date IS THIS MONTH
ORing two conditions
sales > 1000 OR sales IS NULL
Check if a value contains a string using %
as a wildcard. If %
is not provided, it will be inserted at the beginning and end of the value. LIKE
is case-sensitive, ILIKE
is case-insensitive.
state LIKE "Te%"
state ILIKE "m%"