Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Display slicer values selected in card

Hello,   My report has two pages:  Intro and Data.  This report is exported to Power Point and sent to the customer, so for aesthetic purposes the slicers on the Data page are hidden (collapsible p...
  • dedelman_clng's avatar
    7 years ago

    You should be able to create a measure along the lines of

     

    IF (
      HASONEVALUE (**slicer field**),
      SELECTEDVALUE (**slicer field**),
      ""
    )

     

    Put that measure in the card and it should be empty when no slicer is selected, and populated when one is.

     

    Hope this helps

    David

  • dedelman_clng's avatar
    dedelman_clng
    7 years ago
    For that you should be able to write a measure like

    MIN(**Date Field**) && “-“ && MAX(**Date Field**)

    That will give you a string to put in a card.

    Hope that helps
    David