Is New Customer
is_new_customer
Overview
Is New Customer indicates whether an order is the customer’s first order for the shop.
Is New Customer =trueif no earlier order exists for the same customer
Detailed Breakdown
The classification is based on data from the Orders table.
If a previous order is found where any of the following fields match the current order’s values:
customer_idcustomer_emailcustomer_phone
then is_new_customer = false; otherwise true.
NoteTriple Whale classifies all customers as either new or returning, while some sales platforms may leave certain customers unclassified.
This difference can lead to discrepancies when comparing Triple Whale metrics (e.g.,
New Customer Orders,Returning Customer Revenue) with analytics from the main sales platform.
Change HistoryOn October 5, 2025, Triple Whale updated the
is_new_customerlogic.Previously, a customer was considered returning only when both the
customer_idand at least one ofcustomer_emailorcustomer_phonematched a previous order.
Updated 8 days ago