We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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
CALCULATE (Sum'Table 1'(Sales)) , FILTER( 'Table ' , 'Table 1'[OrderDate]) in ('Table 1'[OrderDate] -90) && 'Table 1'[OrderDate]
which is incorrect.
Thanks,
Hi Phil
Thanks for replying.
I want the Sum of sales should be equal to OrderDate.
Thanks.
Regards
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
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 32 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 66 | |
| 40 | |
| 34 | |
| 25 |