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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
moulshree172
Frequent Visitor

How can I add month wise Growth %?

I need to add month-wise Growth % to the table on the right in the 'GRS Wise Retailers Added Per Month' page.

I am getting only growth % according to the state but not month wise. any idea how it can be done?

I am attaching the file's path below:

https://ifitech-my.sharepoint.com/:u:/g/personal/moulshree_dhanawade_ifi_tech/ESr5NWpzordDnLrcqcCY1G...

4 REPLIES 4
amitchandak
Super User
Super User

@moulshree172 , Not able to check the file yet. But you can use time intelligence with date calendar and get diff between, MTD and LAST MTD

 

MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last MTD (complete) Sales =  CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))))
last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-12,MONTH)))
last year MTD (complete) Sales =  CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-12,MONTH))))

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/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello Amit, I have created growth % measure but my month is not aligning with it. I need to display my growth % month wise.

 

Hi,  @moulshree172 

What is "month wise Growth %"?

Can  you explain to me its calculation logic, or show me you expected result.

And I also  find a measure called "MonthGrowth %",is there any connection between measure"MonthGrowth %" and the measure "month wise Growth % "you mentioned?

 

Best Regards,
Community Support Team _ Eason

Month wise growth % is just growth % but by month and state wise. There is no relation between month % column.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors