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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there,
I need some kind of way to fill the empty cells in order to show the full progress on a weekly tracking Line Graph.
1) Fill with the last value all the empty spaces
2) If no last-value use 0%
3) Show all the weeks even there are no values
I'm attaching the example I've been working but haven't been able to show it. I tried to generate a separate table but can't find a way to make it work.
How would you do this? Appreciate all the help
Download files
1) Fill with the last value all the empty spaces:;
Use
LastFilledProgress =IF(ISBLANK([category]),CALCULATE(MAX([category]),FILTER(TableName,TableName[Week<EARLIER(TableName[Week]))),[category])
2) If no last-value use 0%
USE: NoLastProgress = IF(ISBLANK([category]) || [category] = 0, 0, [category])
3) Show all the weeks even there are no values
Use the above measures to plot the graph.
can you try updating the file I shared with your proposal?