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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a lineplot which shows a value per month for 3 brands. In august no brand has any value, but I want to show this gap.
I have used "Show items with no data" option for a column from my Date Table but it did not help, the plot continues without showing August.
What can be a solution?
Solved! Go to Solution.
Good nigth @Anonymous, the best way to do this is fix your measure to show "zero" when the value is blank.
Try this:
Measure =
var Value = Table[Value]
var Validation = if(Value>0,Value,0)
return Validation
with this, if the value is blank, the measure will show zero.
Good nigth @Anonymous, the best way to do this is fix your measure to show "zero" when the value is blank.
Try this:
Measure =
var Value = Table[Value]
var Validation = if(Value>0,Value,0)
return Validation
with this, if the value is blank, the measure will show zero.
Thanks @DanielGarcia. I was looking for another solution because in this way I can not see the gaps and the lines show continuing trend.
But seems that this is the only solution up to now.
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.