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.Documentation Index
Fetch the complete documentation index at: https://docs.anlytic.com/llms.txt
Use this file to discover all available pages before exploring further.
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
- 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
Date Functions
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)
Text Functions
Functions for text manipulation:- Change case (Upper, Lower)
- Extract substrings (Left, Right)
- Search text (Contains)
Math Functions
Functions for mathematical operations:- Round numbers (Int)
- Calculate square roots (Sqrt)
- Check number properties (IsEven, IsOdd, Sign)
Logical Functions
Functions for conditional logic:- Conditional branching (If, Switch, Choose)
- Null handling (IsNull, IsNotNull, Coalesce, Zn)
- Range checking (Between, In)
Basic Syntax
All formulas start with an equals sign (=):
Column References
Reference columns by wrapping the column name in square brackets:Example Formula
- Calls the
DateDifffunction - 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
Using the Function Input

- 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
Creating a Formula
- 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
- Function Index - Browse all available functions organized by category
- Date Functions - Complete reference for date and time functions
- Text Functions - Complete reference for text manipulation functions
- Math Functions - Complete reference for mathematical functions
- Logical Functions - Complete reference for conditional logic functions