Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Filter data using selected value in slicer

Hello everyone! I have been trying to do something that seems simple but I cannot achieve it. I have a table that I use for a slicer and it allows the user to choose the month. The column Month...
  • AllisonKennedy's avatar
    AllisonKennedy
    6 years ago
    You can create a new measure for Value that removes the month filter and then reapplies based on how you want, so

    VALUE = CALCULATE(SUM(table[value]), ALL(Month), DataMonth< Selected Month)

    Pardon my terrible syntax, that's just meant to provide theory. Let me know if it doesn't make sense.