Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Show on a lineplot months without data does not work?

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 Ta...
  • DanielGarcia's avatar
    3 years ago

    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.