Common Calculated Columns
Column Name | Description |
---|---|
Cart creation date | Timestamp associated with the cart creation date. Calculated by joining quote_item.quote_id to quote.entity_id and returning the created_at timestamp |
Cart is active? (1/0) | Boolean field that returns “1” if the cart was created by a customer and has not yet converted to an order. Returns “0” for converted carts, or carts created through the admin. Calculated by joining quote_item.quote_id to quote.entity_id and returning the is_active field |
Cart item total value (qty * base_price) | Total value of an item at the time the item was added to a cart, after catalog price rules, tiered discounts, and special pricing are applied and before any taxes, shipping, or cart discounts are applied. Calculated by multiplying the qty by the base_price |
Seconds since cart creation | Elapsed time between the cart’s creation date and now. Calculated by joining quote_item.quote_id to quote.entity_id and returning the Seconds since cart creation field |
Store name | Name of the Commerce store associated with the order item. Calculated by joining sales_order_item.store_id to store.store_id and returning the name field |
Common Metrics
Metric Name | Description | Construction |
---|---|---|
Number of abandoned cart items | Total quantity of items added to carts that meet specific “abandonment” conditions | Operation: Sum Operand: qty Timestamp: Cart creation date Filters: - [ A ] Cart is active? (1/0) = 1- [ B ] Seconds since cart creation > x, where “x” corresponds to the elapsed time (in seconds) since cart creation beyond which a cart is considered abandoned |
Abandoned cart item value | Sum of total revenue associated with carts that meet specific “abandonment” conditions | Operation: Sum Operand: Cart item total value (qty * base_price) Timestamp: Cart creation date Filters: - [ A ] Cart is active? (1/0) = 1- [ B ] Seconds since cart creation > x, where “x” corresponds to the elapsed time (in seconds) since cart creation beyond which a cart is considered abandoned |