Forum Discussion
Nextmonth calculation
Hi,
This is my table.I just want to calculate Aug month total hours value.
I used this measure
Next month value = calculate(sum('table'[total hours value]),dateadd(table[month year],+1,month
can someone help.
thanks
kg
Anonymous , This wrong usgaes. If you need just to diaply next month use this
next month = format(eomonth(today(),1),"MMM-YYYY")
19 Replies
- amitchandakSuper User
Anonymous ,
Next month value = CALCULATE(sum('table'[total hours value]),DATESMTD(dateadd('Date'[Date],1,MONTH)))
CALCULATE(sum('table'[total hours value]),nextmonth('Date'[Date]))
Use date table properly
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184
Appreciate your Kudos.- AnonymousNot applicable
Amit
I tried
Next month = CALCULATE(SUM('Sales- Hours'[Total Hours Value]),DATESMTD(DATEADD('calender'[Month Year],1,MONTH)))Next month . = CALCULATE(SUM('Sales - Hours'[Total Hours Value]),DATESINPERIOD('calender'[Month Year],MAX('Table'[Month Year]),1,MONTH))Both are bringing same values ...Its not working.. means not matching my aug month value.ThanksKavitha Ghosh
- FarhanAhmedCommunity Champion
Next month value = calculate(sum('table'[total hours value]),DATESINPERIOD(DimDate[Date],MAX(DimDate[Date]),1,MONTH))Try use this.
- AnonymousNot applicable
Thanks Farhan..Its not working
- Pragati11Super User
Hi Anonymous ,
Create a measure as follows:
next month sales = CALCULATE(SUM(ClothingSales[Sales]), DATEADD(ClothingSales[Date], 1, MONTH))Just use your dates column in above dax.Thanks,Pragati- AnonymousNot applicable
Thanks Pragati..its not working
- Pragati11Super User
Hi Anonymous ,
Your comment - Not working doesn't give me any insight on what is wrong with it.
Always helpful to have some screesnhot with error.
Thanks,
Pragati