Forum Discussion
Datachris3000
6 years agoFrequent Visitor
Slicer not filtering date range correctly
Hi all,
I do have an issue with the date slicer and the filtering on the x-axis of my graphs.
My date slicer doesn't work on filtering the Axis, it only filters the values. (see screenshot)
-> The measure I'm using is like this:
Rekl. (gew.) = SUM(Meldungen[Reklamationen])+0
-> the +0 is there, because I need to see data points with 0 complaints (=Reklamationen) as well...
I guess there is a quite easy solution for my issue.
Thank you in advance!
6 Replies
- amitchandakSuper User
Datachris3000 , if you add +0, it will become left join and all data point in the calendar will be shown.
- Datachris3000Frequent Visitor
Hi amitchandak,
thank you for your quick reply!
Do you know how to change the measure, so that it
- sums up values
- outputs 0 if there are "no data"
- is filtered correctly by slicers?
That could solve the problem
- dobregonImpactful Individual
could you try with a measure
measure = var A = SUM(your sum) Return if(isblank(a),0,a) I imagine that your X axis from dates are not in the same table that your values right? because if they are in the same table (dates and values) you will not have this problem. In any case, check your relationship between both tables