Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Plot a graph using slicer outcomes

I have a slider slicer that changes a value on a card.   I'd like to plot every 10 points of the slider slicer to the card values on a line graph.   For example, when I move the slider slicer to:...
  • Stachu's avatar
    7 years ago

    add this measure

    Measure = 
    VAR _WhatIf = MAX('Unique'[WhatIf])
    RETURN
    CALCULATE(DISTINCTCOUNT('1_INSTALLS'[Machine]),'Unique'[WhatIf]>_WhatIf)

    you should actually disable slider interaction with this chart