Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 101 | |
| 39 | |
| 29 | |
| 29 |