cross_filter
Applies filters across related tables.
Syntax
cross_filter(<leftTable>, <rightTable>, <filterType>)
| Parameter | Type | Description |
|---|---|---|
| leftTable | Table | The Lefttable table. |
| rightTable | Table | The Righttable table. |
| filterType | Text | The Filtertype string value. |
Return values
Null
Usage
Applies filters from orders to customers table based on customer_id relationship.
cross_filter(orders, customers, orders.customer_id = customers.id)