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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Sakaraipandian
Frequent Visitor

Dynamic dates

Hai,

 

My question is, for every year I have a calendar table with festival name and date columns, in every year festival date will vary then how to calculate sales with last 30 days , festival name is constant but date will change every year  i.e one month before or after.

 

For eg. Festival name deepavali.  In year 2020_ Nov 14th, and in year 2021_Nov 4th. With corresponding festival name I want to calculate the last 30 days of the sales.

 

  1. How to implement n thks in advance

 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@Sakaraipandian you can create another table that contains the festival date and name of the festival and then use that as a slicer for users to select the festival, and then use the date from the festival date to get the sales for the last 30 days.

 

Last 30 Days Sale = 
VAR __festivalDate = MAX ( YourFestivalTable[Date] )
VAR __startDate = __festivalDate - 30
RETURN
CALCULATE ( 
   [Sales Measure],
   DATESBETWEEN ( YourCalendarTable[Date], __startDate, __festivalDate ) 
)

 

You might need to tweak it a bit but this will get you started.

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

6 REPLIES 6
parry2k
Super User
Super User

@Sakaraipandian you can create another table that contains the festival date and name of the festival and then use that as a slicer for users to select the festival, and then use the date from the festival date to get the sales for the last 30 days.

 

Last 30 Days Sale = 
VAR __festivalDate = MAX ( YourFestivalTable[Date] )
VAR __startDate = __festivalDate - 30
RETURN
CALCULATE ( 
   [Sales Measure],
   DATESBETWEEN ( YourCalendarTable[Date], __startDate, __festivalDate ) 
)

 

You might need to tweak it a bit but this will get you started.

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Is it work for every year 

parry2k
Super User
Super User

@Sakaraipandian you never mentioned the last 30 days from what date? I guess you are saying you want the last 30 days from the festive name? Is that what you are looking for?



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

S right

 

parry2k
Super User
Super User

@Sakaraipandian what festival date has to be with the last 30 days?

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

I did mention on post itself, the festival name is same but every year date will change acc to that I have to calculate last 30 days sale from that date For eg. Festival name deepavali.  In year 2020_ Nov 14th, and in year 2021_Nov 4th. With corresponding festival name I want to calculate the last 30 days of the sales.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors