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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
barbaraferreira
Regular Visitor

DATEADD

Hi guys, 

 

I'm having a issue with the DAX function DATEADD, I'm trying to compare some metrics week by week, did you guys know how to use function with the interval of week?

 

1 ACCEPTED SOLUTION
cosm
Resolver II
Resolver II

Hi.

Please provide some more information of what your data looks like and what you want to achive.

Regarding the function DATEADD: make sure you use correct syntax, e.g.:

 

New_Date = DATEADD('Sales'[Order Date], 30, DAY)

 


You might also consider looking into Time Intelligence Functions in Dax:
https://learn.microsoft.com/en-us/dax/time-intelligence-functions-dax

Or combine Calculate (second argument filter context) and Previous Week to calculate a sum or similar previous week:

 

Sales WoW = CALCULATE(SUM([Sales Amount]), PREVIOUSWEEK(Calendar[Date]))

 


Hope this helps you on your way.

Kind regards!

View solution in original post

1 REPLY 1
cosm
Resolver II
Resolver II

Hi.

Please provide some more information of what your data looks like and what you want to achive.

Regarding the function DATEADD: make sure you use correct syntax, e.g.:

 

New_Date = DATEADD('Sales'[Order Date], 30, DAY)

 


You might also consider looking into Time Intelligence Functions in Dax:
https://learn.microsoft.com/en-us/dax/time-intelligence-functions-dax

Or combine Calculate (second argument filter context) and Previous Week to calculate a sum or similar previous week:

 

Sales WoW = CALCULATE(SUM([Sales Amount]), PREVIOUSWEEK(Calendar[Date]))

 


Hope this helps you on your way.

Kind regards!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.