Forum Discussion

EZiamslow's avatar
EZiamslow
Icon for Helper III rankHelper III
7 years ago
Solved

Dynamic column calculate based on slicer date range and filter by two parameters

I created some process control charts with a slicer on top by date. I need help with calculating average, stdev, and other info based on slicer date range by Step and Product. Is it possible to calcu...
  • d_gosbell's avatar
    7 years ago

    EZiamslow wrote:

    I created some process control charts with a slicer on top by date. I need help with calculating average, stdev, and other info based on slicer date range by Step and Product.


    This should just be a matter of creating a couple of measures

    eg.

    Avg Data = AVERAGE( Table1[Data] )
    Stdev Data = STDEV.P( Table1[Data] )

    (note I've just used "table1" as a placeholder for your table name)

     

    By default these should pull in the current context from any slicers.