Forum Discussion

ccrill23's avatar
ccrill23
New Member
4 years ago
Solved

Dynamically change text box based on slicer selection

Hello,  I am currently building a dashboard for my hospitals call centers and would like for the information in my text box to change based on what I have selected in my slicer.    So when I have ...
  • bcdobbs's avatar
    4 years ago

    Try something like the following measure:

     

     

    VAR CallCentre = SELECTEDVALUE( Table[Call Centre], BLANK() )
    
    RETURN
    
    IF ( CallCentre = "WMC", "Your Text", BLANK() )

     

     

    then drop the measure into a card visual.