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

Get next month data based on selected month

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 

Selected Month + 1 =
VAR _Date1 = DATE(SELECTEDVALUE('Date'[Year]),SELECTEDVALUE('Date'[MonthOfYear])+ 1,1)
VAR _Date2 = DATE(SELECTEDVALUE('Date'[Year]),SELECTEDVALUE('Date'[MonthOfYear])+ 1,27)
RETURN
CALCULATE(
SUMX(ListingDelays_Response_UpdatedListingDelays_Response_Updated[Number of weeks]),
ListingDelays_Response_Updated[EnteredDate] >= _Date1 &&
ListingDelays_Response_Updated[EnteredDate] <= _Date2 )
 
Now if I remove +1 from SELECTEDVALUE('Date'[MonthOfYear])+ 1 it is showing data of selected month but no result are shown with + 1. I checked the VAR is seperate measure it is showing correct dates.
 
Any suggestion what I doing wrong and how to acheive above?
 
Thanks 
 
1 ACCEPTED SOLUTION
PaulOlding
Solution Sage
Solution Sage

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

 

View solution in original post

2 REPLIES 2
PaulOlding
Solution Sage
Solution Sage

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

 

Anonymous
Not applicable

Hi PaulOlding,

 

Thanks for this, DateADD actually really helped. 

Best Regards,

Thanks



 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors