Forum Discussion
FILTER(ALL on multiple
- Anonymous8 years ago
Base on my test, we can use the function ALLEXCEPT instead of ALL here to make the product name keeping filtered.
So we can create a measure using the formula as below:
ALLEX := CALCULATE(Sum('0 - Measureables'[Value]),(FILTER(ALLEXCEPT('0 - Measureables','0 - Measureables'[Product]),'0 - Measureables'[Date]<=(MAX('0 - Measureables'[Date])))))After that we can get the result that we need.
For more information, please refer to the pbix as attached.
Regards,
Lydia
If you simply want to display the total value for a specific set of dates, cant you use a date slicer together with a "measure = sum(measureables[value])?
- Sdg84818 years agoHelper I
Hi, thank you for the response. Unfortunately though i need to display sum of the values (total) for each measure but only until the date that the user selected, not all the dates in the table as some may be after this point. In the seperate column i have a measure showing exactly what you have suggested, but that only gives the total for the chosen day.
Hope this makes sense,
Thanks