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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Month on Month Growth % in the given table

I have this table as below
and I have dervied month_number from the Month_year column.
I want to calculate the MOM growth on Online_Traffic in calculated column which will tell me what is the % compared last month.
How Do I achieve this with dax.
please help me in this.

 

Anis_Hussain_0-1686300146421.png

 

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please create a new measure:

MOM growth = 
VAR __city = MAX('Table'[City])
VAR __mon_num = MAX('Table'[Month_number])
VAR __pre_value = CALCULATE([Total_Online_Traffic],'Table'[City]=__city && 'Table'[Month_number] = __mon_num - 1)
VAR __result = DIVIDE([Total_Online_Traffic]-__pre_value,__pre_value)
RETURN
__result

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

lbendlin
Super User
Super User

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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