The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
How can I calculate the number of days between order n and order n+1 for each customer in Power BI?
I want to show and analyze the timespan*(in the day)* between first and second, second and third, etc orders.
Solved! Go to Solution.
Hi @KiKa ,
You can create a calculated column as below to get it:
Number of days =
VAR _nextodate =
CALCULATE (
MIN ( 'Table'[order date] ),
FILTER (
ALL ( 'Table' ),
'Table'[user id] = EARLIER ( 'Table'[user id] )
&& 'Table'[order id] > EARLIER ( 'Table'[order id] )
)
)
RETURN
DATEDIFF ( 'Table'[order date], _nextodate, DAY )
Best Regards
Hi @KiKa ,
You can create a calculated column as below to get it:
Number of days =
VAR _nextodate =
CALCULATE (
MIN ( 'Table'[order date] ),
FILTER (
ALL ( 'Table' ),
'Table'[user id] = EARLIER ( 'Table'[user id] )
&& 'Table'[order id] > EARLIER ( 'Table'[order id] )
)
)
RETURN
DATEDIFF ( 'Table'[order date], _nextodate, DAY )
Best Regards
@KiKa , Try a new column like
New column =
var _max = maxx(filter(Table, [User Id] =earlier([User Id]) && [Order Id] < earlier([Order Id]) ),[Order ID])
return
datediff([order Date] , maxx(filter(Table, [User Id] =earlier([User Id]) && [Order Id]= _max ),[Order Date]) , Day)+1
Hey! I used your proposed solution above to solve a similar problem. However, the formula seems to struggle whenever the second order is in a new year or whenever a customer has placed two orders at the same day (see below example). In those cases it turns out negative.
this is how the formula looks like with my data
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
68 | |
52 | |
50 |
User | Count |
---|---|
120 | |
120 | |
76 | |
62 | |
61 |