Forum Discussion

oldmanraskers's avatar
oldmanraskers
Frequent Visitor
9 years ago
Solved

Link Calculate Filter and Filter Control

Hello,   Can anyone point me in the direction of how to filter a DAX calculate command based on the value of the the filter control - is that even possible? I am trying to filter a table based on d...
  • TomMartens's avatar
    9 years ago

    Hey,

     

    I have to admit that I'm do not understand what you are requesting

     

    If you want to pass the filterselection into your measure calculation try ALLSELECTED

    https://msdn.microsoft.com/en-us/library/gg492186.aspx

     

    If you are looking for something completely different try the search by looking for: dynamic measure

     

    Sorry

  • v-sihou-msft's avatar
    v-sihou-msft
    9 years ago

    oldmanraskers

     

    As TomMartens said, you just need to use ALLSELECTED() function on corresponding date column in CALCULATE() function.

     

    Measure=CALCULATE(<expression>, ALLSELECTED(Table[Date]))

     

    Regards,

    Simon Hou