Functions provide powerful formula capabilities for transforming and analyzing your data in real-time. Similar to Excel formulas, functions allow you to create calculated columns that perform operations on your table data.
Accessing Functions
Functions are available within Data Tables in your dashboards. To access functions:
Navigate to Dashboard → Team
Create a new Data Table or open an existing one
The Function Input bar appears at the top of the table view
You can use functions in any data table, whether you’re:
Creating a new data table
Opening an existing data table
Viewing a table from a saved dashboard
What are Functions?
Functions are expressions that you can use to:
Transform date/time values - Extract components, calculate differences, add/subtract time periods
Manipulate text - Change case, extract substrings, search text
Perform calculations - Round numbers, calculate square roots, check number properties
Apply conditional logic - Create if-then rules, handle null values, check ranges
Function Categories
Functions for working with dates and times:
Extract date parts (Year, Month, Day, Hour, Minute, Second)
Calculate differences (DateDiff)
Add or subtract time (DateAdd)
Truncate dates (DateTrunc)
Check date ranges (InDateRange, InPriorDateRange)
Convert timezones (ConvertTimezone)
Examples:
Functions for text manipulation:
Change case (Upper, Lower)
Extract substrings (Left, Right)
Search text (Contains, Find)
Combine values (Concat)
Measure and rewrite text (Len, Replace, Repeat)
Examples:
Functions for mathematical operations:
Round numbers (Int)
Calculate square roots (Sqrt)
Check number properties (IsEven, IsOdd, Sign)
Examples:
Functions for conditional logic:
Conditional branching (If, Switch, Choose)
Null handling (IsNull, IsNotNull, Coalesce, Zn)
Range checking (Between, In)
Examples:
Basic Syntax
All formulas start with an equals sign (=):
Column References
Reference columns by wrapping the column name in square brackets:
This formula:
Calls the DateDiff function
Uses "day" as the time unit
References the [Order Date] column
Uses Today() function for the current date
Returns the number of days between the order date and today
The Function Input appears at the top of your table view and provides:
Autocomplete - Type / to see function suggestions
Column Palette - Type [ to select columns visually
Parameter Hints - Hover over functions to see parameter requirements
Real-time Validation - Errors are highlighted as you type
Syntax Highlighting - Different colors for functions, columns, and values
Click in the Function Input bar
Type = to start a formula
Type a function name (suggestions will appear)
Fill in parameters using column references or values
Press Enter or click ✓ to submit
Common Patterns
Calculate Time Differences
Conditional Logic
Handle Null Values
Text Transformations
Next Steps
Explore the function categories:
Last modified on August 17, 2026