Forum Discussion
Divya904
8 years agoHelper III
DAX Formula
Hi Experts Please help me to write DAX calculation for this. I want to Calculate total sales, if OrderedDate is between <[OrderDate - 90 days) and [OrderDate] My DAX calculation is CALCUL...
Phil_Seamark
8 years agoMicrosoft Employee
- Divya9048 years agoHelper III
Hi Phil
Thanks for replying.
I want the Sum of sales should be equal to OrderDate.
Thanks.
Regards
- Anonymous8 years agoNot applicable
I'm assuming this will be a calculated column for the table that contains a list of Order Dates
SumSales = VAR startDate = DATEADD([OrderDate], -90, day) VAR endDate = [OrderDate] RETURN CALCULATE ( Sum('Table 1'[Sales]), ALL('Table 1'), 'Table 1'[OrderDate] >= startDate, 'Table 1'[OrderDate] <= endDate )