Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Divya904
Helper III
Helper 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


CALCULATE (Sum'Table 1'(Sales)) , FILTER( 'Table ' , 'Table 1'[OrderDate]) in ('Table 1'[OrderDate] -90) && 'Table 1'[OrderDate]

 

which is incorrect. 

 

Thanks,

3 REPLIES 3
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @Divya904

 

Do you just want to sum the sales for the last 90 days leading up to today?


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi Phil

 

Thanks for replying.

 

I want the Sum of sales should be equal to OrderDate.

 

Thanks.

 

Regards

Anonymous
Not 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
)

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.