Please help - how do I remove the gaps in the area chart?
This is something like product count based on different products and I get a gap. Is there any way to remove this please?
Thank you!
Solved! Go to Solution.
Hi @NRS_Tych ,
1 create a new table via values(table[x-axis])
2 set the newtable[x-axis] as the X-axis of the stacked area chart
3 create a measure like the following:
Measure =
VAR _s =
CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = MAX ( 'New Table'[Date] ) )
RETURN
IF ( ISBLANK ( _s ), 0, _s )
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Awesome!! Thank you!
Hi @NRS_Tych ,
1 create a new table via values(table[x-axis])
2 set the newtable[x-axis] as the X-axis of the stacked area chart
3 create a measure like the following:
Measure =
VAR _s =
CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Date] = MAX ( 'New Table'[Date] ) )
RETURN
IF ( ISBLANK ( _s ), 0, _s )
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!