Forum Discussion

maiios's avatar
maiios
Frequent Visitor
4 years ago
Solved

Fill in missing values in a line graph with 0, while respecting the slicer

I have looked at other solutions on this forum, but have not found anything that solves my issue. I have some data that has dates with no entry. When I graph it on a line graph, it looks like this: ...
  • amitchandak's avatar
    4 years ago

    maiios , because handle null will bring in all duration, I usually handle if again ''example

     

    0 between range
    Measure = var _1= SUM(Opportunity[Opportunity count]) +0
    var _min = minx(ALLSELECTED('Calendar'), 'Calendar'[Date])
    var _max = maxx(ALLSELECTED('Calendar'), 'Calendar'[Date])
    return
    CALCULATE(if(max('Calendar'[Date]) <_min || max('Calendar'[Date]) >_max , BLANK(), _1))