Forum Discussion
JoeCrozier
Helper II
3 years agoDisplay 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...
- 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
Greg_Deckler
Community Champion
3 years agoJoeCrozier Oh, for that I would just use this:
Measure =
VAR __MaxStatus = MAX('Staff'[Status Date])
VAR __MinStatus = MIN('Staff'[Status Date])
RETURN
__MinStatus & " - " & __MaxStatusJoeCrozier
Helper II
3 years agoIm sorry to keep drawing you back in (and I really really appreciate all the help!) but it still seems to not be working:
Any ideas?