I have an analysis of new customers by channel (on rows) and Year (on columns). It shows for instance that 13,782 customers from Channel A have a first order date in 2008. Simple enough. What I want to do is create a measure that counts the numbers over the 365 days AFTER their first order date (which I have as a field on DIM_Customer, as well as the first order flagged as TRUE on the FACT_Orders table). So I in essence it seems like I need to create a 365 context for each individual customer since each of their first order dates is unique to the customer.
If I were doing this in a database, I would isolate the cust ID's of the 13,782 customers and sum their orders on the order table for the time period in question via a join on cust ID.
Feels like I could use DATESBETWEEN in DAX/Powerpivot, but I can't figure out how to get that range to be the next 365 days after that first order date.
Can anyone help?
Jude
If I were doing this in a database, I would isolate the cust ID's of the 13,782 customers and sum their orders on the order table for the time period in question via a join on cust ID.
Feels like I could use DATESBETWEEN in DAX/Powerpivot, but I can't figure out how to get that range to be the next 365 days after that first order date.
Can anyone help?
Jude