Forum Discussion

JoeCrozier's avatar
JoeCrozier
Helper II
3 years ago
Solved

Display Card with date range from selected slicer

I think I need to do exactly this solution from this question, but honestly I just need it explained a bit more.    More detail: I have these slicers on one tab of my Power bi:   And on th...
  • Greg_Deckler's avatar
    Greg_Deckler
    3 years ago

    JoeCrozier Oh, for that I would just use this:

    Measure = 
      VAR __MaxStatus = MAX('Staff'[Status Date])
      VAR __MinStatus = MIN('Staff'[Status Date])
    RETURN
      __MinStatus & " - " & __MaxStatus