Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 46 | |
| 43 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 198 | |
| 126 | |
| 102 | |
| 68 | |
| 51 |