Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I have a data with multiple products, year, month and the values.
I want to plot the line graph showing the % growth of value from Jan to Feb for each year and product as a filter Can you help with code or the measure I need to use for the graph.
Solved! Go to Solution.
Hi @bvsaicharitha,
Do you want to get the %change like below?
If you want to get the %change above, you could refer to the measures below.
Jan = CALCULATE(SUM(Table1[Sales]),FILTER('Table1','Table1'[Month number]=1&&'Table1'[Year]=MAX('Table1'[Year])))
Feb = CALCULATE(SUM(Table1[Sales]),FILTER('Table1','Table1'[Month number]=2&&'Table1'[Year]=MAX('Table1'[Year])))
%change = DIVIDE([Feb]-[Jan],[Jan])
If you need additional help, please share the output you desired.
In addition, you could have a reference of Measures – Month to Month Percent Change.
Best Regards,
Cherry
Hi @bvsaicharitha,
Do you want to get the %change like below?
If you want to get the %change above, you could refer to the measures below.
Jan = CALCULATE(SUM(Table1[Sales]),FILTER('Table1','Table1'[Month number]=1&&'Table1'[Year]=MAX('Table1'[Year])))
Feb = CALCULATE(SUM(Table1[Sales]),FILTER('Table1','Table1'[Month number]=2&&'Table1'[Year]=MAX('Table1'[Year])))
%change = DIVIDE([Feb]-[Jan],[Jan])
If you need additional help, please share the output you desired.
In addition, you could have a reference of Measures – Month to Month Percent Change.
Best Regards,
Cherry
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 79 | |
| 38 | |
| 31 | |
| 27 | |
| 27 |