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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Guys,
In my report the requirement is I need to get sum of weeks based on selected month but the twist is I need to get next month sum of weeks.
for e.g. If user selected May from Month filter it needs to show data for Jun and if user select Jun in month filter it needs to show July data etc.
Below is my DAX
Solved! Go to Solution.
Hi @Anonymous
The first thing to note is you'll have a problem if the user selects December. Your logic to add 1 to the month number (MonthOfYear) will give you month 13.
DAX has a function called DATEADD which is commonly used in scenarios like this.
Something like:
SelectedMonth + 1 =
CALCULATE(
SUM(ListingDelays_Response_Updated[Number of weeks]),
DATEADD('Date', 1, MONTH)
)
Hi @Anonymous
The first thing to note is you'll have a problem if the user selects December. Your logic to add 1 to the month number (MonthOfYear) will give you month 13.
DAX has a function called DATEADD which is commonly used in scenarios like this.
Something like:
SelectedMonth + 1 =
CALCULATE(
SUM(ListingDelays_Response_Updated[Number of weeks]),
DATEADD('Date', 1, MONTH)
)
Hi PaulOlding,
Thanks for this, DateADD actually really helped.
Best Regards,
Thanks