Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
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
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...
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
19 | |
18 | |
18 | |
15 |
User | Count |
---|---|
38 | |
22 | |
18 | |
15 | |
11 |