Working with Tables and Views
Understanding Tables Tables in Elementum are dynamic, real-time data views that automatically stay synchronized with your data sources. They transform raw data into actionable business insights through an intuitive interface. Data Sources for Tables:- CloudLinks - Connect to external data warehouses (Snowflake, BigQuery, etc.)
- Apps - Data from your custom applications
- Elements - Shared data across teams and departments
- Tasks - Workflow steps and progress tracking
Why Tables Matter for Your Business
Single Source of Truth
- Everyone works with the same, current data
- No more emailing spreadsheets around
- Updates happen in real-time
- Eliminate data copy-paste errors
Custom Views for Different Needs
- Sales team sees revenue metrics
- Support team sees customer issues
- Finance sees payment status
- Leadership sees high-level summaries
- All from the same underlying data
Configuring Data Sources
Snowflake View Configuration
When connecting to Snowflake or other data warehouses, you’ll configure: Database Selection- Choose your target database from available options
- Example:
ACME_ANALYTICS_PROD
- Select the appropriate schema within your database
- Example:
DATA
- Define a meaningful name for your view
- Example:
DET
(Deal Execution Table)
Proper naming conventions help team members quickly identify and locate the
right data views.
Table Features
1. Joins - Combining Data Made Easy
Elementum provides four join types with visual representations to help you understand how data will be combined. Each join type serves different business needs: Join Configuration:- Source Field: Select the field from your primary table
- Joined Object Field: Select the matching field from the secondary table
- The system guides you through field selection with dropdown menus
Inner Join - Only Matching Records
Inner Join - Only Matching Records
What it does: Shows only records that exist in both tables with matching values.Visual representation: Two overlapping circles, showing only the intersection.Business use cases:When to use: When you need to focus on records that have relationships and want to exclude unmatched data.
- Active customers with orders: Show only customers who have made purchases
- Employees with assigned projects: Display staff members who are actively working on projects
- Products with sales data: View only products that have been sold
- Vendors with active contracts: List suppliers who currently have agreements
Left Outer Join - Keep All Left Records
Left Outer Join - Keep All Left Records
What it does: Keeps all records from the left (primary) table, plus
matching records from the right table. Visual representation: Left circle
completely filled, with matching portion from right circle. Business use
cases: - All customers and their orders: Show every customer, including
those who haven’t ordered - Complete employee roster: Display all staff,
whether they’re on projects or not - Full product catalog: Show all
products, including those never sold - Marketing campaign analysis: View
all contacts, showing who responded to campaigns Example scenario:
Customer Table: 1000 customers Orders Table: 500 orders from 300 customers Left Join Result: 1000 customers (700 show no orders, 300 show order data)
When to use: When your primary concern is the complete dataset from your
main table, but you want to enrich it with available data from another source.Right Outer Join - Keep All Right Records
Right Outer Join - Keep All Right Records
What it does: Keeps all records from the right (secondary) table, plus
matching records from the left table. Visual representation: Right circle
completely filled, with matching portion from left circle. Business use
cases: - All orders with customer details: Show every order, even if
customer data is missing - Complete transaction log: Display all payments,
including those without customer profiles - Full support ticket history:
Show all tickets, even if user accounts were deleted - Inventory
movements: Track all stock changes, including anonymous transactions
Example scenario:
Customer Table: 1000 customers Orders Table: 500 orders (50 from deleted/unknown customers) Right Join Result: 500 orders (450 with customer data, 50 without)
When to use: When you need complete
data from your secondary table and want to see what primary table data is
available to enrich it.Full Outer Join - Keep Everything
Full Outer Join - Keep Everything
What it does: Keeps all records from both tables, whether they match or not.Visual representation: Both circles completely filled, showing all data from both sources.Business use cases:When to use: When you need to see the complete picture from both data sources and identify what data exists, what’s missing, and what’s orphaned.
- Complete data audit: See all customers AND all orders, identifying gaps
- System migration: Compare old and new systems to ensure no data loss
- Reconciliation reports: Match financial records from different systems
- Master data management: Combine multiple data sources into one comprehensive view
Choosing the right join: Start by asking yourself: “Do I need ALL records
from my primary table, or only the ones that have matching data?” This will
help you decide between inner joins (matches only) and outer joins (keep
everything).
2. Table Details and Configuration
General Settings:- Table Name: Define a clear, descriptive name
- Category: Organize tables by type (Data, Analytics, etc.)
- Source: Links to your original data source
- Cloud Provider: Shows connected service (Porter, Snowflake, etc.)
- Connection Status: Verify active data connections
- Snowflake View: Configure and manage your BI connections
- Performance Monitoring: Track query performance and usage
Snowflake View for External BI ToolsThe Snowflake View feature allows you to expose your Elementum data to external business intelligence tools like PowerBI, Tableau, or Looker. Here’s how it works:
- Create your Elementum table from any data source (Apps, Tasks, Elements, or CloudLinks)
- Configure the Snowflake View in the Business Intelligence section
- Connect external BI tools directly to your Snowflake view
- Build dashboards and reports using your Elementum data in familiar BI platforms
- Combine Elementum data with other enterprise data sources
- Create executive dashboards in existing BI infrastructure
- Enable self-service analytics for business users
- Maintain data governance while providing external access
3. Column Management
Visible Columns- Show/hide columns based on user needs
- Drag and drop to reorder columns
- Search through available columns
- Lock important columns in place
- Store additional data without cluttering the view
- Quick toggle to show/hide groups of columns
- Maintain data integrity while optimizing display
- Calculated Columns: Create formulas like
Total Revenue = Quantity × Price
- Data Types: Automatic detection and formatting
- Sorting: Click column headers to sort data
- Filtering: Use advanced filters for precise data selection
Calculated Columns - Advanced Data Transformation
Understanding Calculated Columns Calculated columns are one of the most valuable features in Elementum tables. They allow you to create new data columns based on existing table data using Excel-like formulas. This transforms your static data into dynamic insights. What You Can Do:- Mathematical Operations:
Revenue = Quantity × Price
- Date Calculations:
Days_Open = TODAY() - Created_Date
- Conditional Logic:
Risk_Level = IF(Amount > 10000, "High", "Low")
- Text Manipulation:
Full_Name = CONCAT(First_Name, " ", Last_Name)
- Aggregations:
Total_Orders = COUNT(Orders.ID)
- Column Name: Give your calculated column a descriptive name
- Function: Enter your formula using Excel-like syntax
- Format Options:
- Format as percentage
- Format as percentage and multiply by 100
- Format as currency
- No formatting (default)
- Mathematical: SUM, AVERAGE, MIN, MAX, ROUND, POWER, SQRT
- Logical: IF, AND, OR, NOT
- Date/Time: DATE, NOW, DATEDIF, WEEKDAY, YEAR, MONTH, DAY
- Text: CONCAT, LEFT, RIGHT, MID, UPPER, LOWER, TRIM
- Lookup: VLOOKUP, COUNTIF, SUMIF, SEARCH, FIND
Performance Consideration: While calculated columns are flexible, creating too many complex calculations can impact table performance. Each calculated column requires processing time when the table loads. For optimal performance:
- Limit complex calculated columns to essential business logic
- Use simple calculations when possible
- Consider pre-calculating values in your data source for frequently used complex formulas
- Monitor table load times and optimize as needed
- Increase warehouse size for better performance with complex calculations and large datasets
Excel-Like Syntax: If you’re familiar with Excel formulas, you’ll feel
right at home with Elementum’s calculation syntax. The functions work
similarly to Excel, making it easy to create advanced data transformations
without learning new syntax.
4. Filtering and Search
Filter Options:- Field Selection: Choose any column for filtering
- Operators: Contains, equals, greater than, less than, etc.
- Values: Direct input or dropdown selection for known values
- Condition Groups: Combine multiple filters with AND/OR logic
- Add Condition: Build complex filter logic
- Condition Groups: Organize related filters
- Clear All: Reset filters quickly
- Save Views: Store frequently used filter combinations
5. Data Operations
Join Operations- Visual interface for combining tables
- Real-time preview of join results
- Field mapping assistance
- Performance optimization suggestions
- Fix formatting issues automatically
- Standardize values across columns
- Remove duplicates
- Handle missing data gracefully
Real Business Examples
Sales Pipeline View
Customer 360 View
Operations Dashboard
Best Practices
Performance Optimization
Join Strategy:- Start with your primary data source
- Join only necessary tables
- Use indexed fields for joins when possible
- Limit joins to 3-4 tables for optimal performance
- Increase warehouse size for better performance with complex multi-table joins
Each join multiplies data processing requirements. More than 4 joins can
significantly slow down your views. Consider creating pre-joined summary
tables for complex views you use frequently.
- Apply filters before joins when possible
- Only display columns you need
- Use calculated columns sparingly
- Archive old data regularly
- Increase warehouse size for better performance with large datasets and complex operations
Data Governance
Naming Conventions:- Use clear, descriptive table names
- Include data source and purpose
- Example:
Sales_Pipeline_Q4_2024
- Configure appropriate permissions
- Document table purposes and owners
- Regular access reviews
- Validate join results
- Monitor for data inconsistencies
- Set up alerts for missing data
User Experience
View Design:- Keep views focused and simple
- Group related columns together
- Use meaningful column headers
- Provide context through descriptions
- Track query execution times
- Monitor user engagement
- Optimize frequently used views