Forum Discussion

DaveC123's avatar
DaveC123
Frequent Visitor
9 years ago
Solved

How to create a new measure using slicer data

I am using a slicer, so when I click on one customer in the splicer the "Tachometer" visual displays the average CpM (average Case per Minute).   But actually I am looking at displaying the goal 10% ...
  • v-ljerr-msft's avatar
    v-ljerr-msft
    9 years ago

    Hi DaveC123,

     

    You can use MAX function to get "Max of Avg CpM". The formulas below are for your reference. :smileyhappy:

    Goal = MAX('Customer Indvl Data'[Avg CpM])*1.1
    Min = MAX('Customer Indvl Data'[Avg CpM])*0.9

     

    Regards