Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I have customers with their "individual" create dates in one table and "multiple" order dates in another table linked using customer id. I have to calculate the "earliest/first order" date and then subtract it from the "create date" for each indicvidual customer to get the number of days between.
Please help. Thanks!
Solved! Go to Solution.
The simplest solution would be to add a calculated column to the 'Customers' table.
DaysUntilFirstOrder = VAR CustomerFirstOrderDate = CALCULATE( MIN('Orders'[Order Date]) ) RETURN DATEDIFF( 'Customers'[Create Date]; CustomerFirstOrderDate; DAY )
This formula assumes a relationship between 'Customers' and 'Orders' table.
The CALCULATE statement enforces that the first order date is found in the context of a single customers. Without CALCULATE the formula would find the first order for ANY customer.
Be aware that DATEDIFF can return an error if any order date found is less that the corresponding 'Customers'[Create Date]. Such an exception can be handled using IFERROR() - but this can have negative performance impact at processing time.
The simplest solution would be to add a calculated column to the 'Customers' table.
DaysUntilFirstOrder = VAR CustomerFirstOrderDate = CALCULATE( MIN('Orders'[Order Date]) ) RETURN DATEDIFF( 'Customers'[Create Date]; CustomerFirstOrderDate; DAY )
This formula assumes a relationship between 'Customers' and 'Orders' table.
The CALCULATE statement enforces that the first order date is found in the context of a single customers. Without CALCULATE the formula would find the first order for ANY customer.
Be aware that DATEDIFF can return an error if any order date found is less that the corresponding 'Customers'[Create Date]. Such an exception can be handled using IFERROR() - but this can have negative performance impact at processing time.
Hi @gng
you have to create these measures
DateCreatedMeasure = MAX(Customer[DateCreated])
EarlierOrderDate = MIN(Orders[OrderDate])
and the result
Diff = VALUE([EarlierOrderDate]-[DateCreatedMeasure])
VALUE() is the poorly named 'convert to numeric type' function.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
37 | |
35 |
User | Count |
---|---|
85 | |
66 | |
59 | |
46 | |
45 |