Forum Discussion

dofrancis3's avatar
dofrancis3
Icon for Resolver I rankResolver I
1 year ago
Solved

How can i buld dynamic title

Dear Colleagues!

 

Colleague i reach out to you to request your assistance

I would like to creat a DYNAMIC Title 

- If i select bOPV or IPV the title should be "YES" and if i select others (DPT1, DPT3, MCV1 and MCV2.) the title should be "NO"

 

 

Thank you for your assistance

  • dofrancis3 

    I hope you make single section on the slicer.

    DynamicTitle =
    VAR SelectedValue = SELECTEDVALUE( 'YourTable'[YourColumn] )
    RETURN
    IF( 
        SelectedValue IN { "bOPV", "IPV" }, 
        "YES", 
        "NO" 
    )

2 Replies

  • Fowmy's avatar
    Fowmy
    Icon for Super User rankSuper User

    dofrancis3 

    I hope you make single section on the slicer.

    DynamicTitle =
    VAR SelectedValue = SELECTEDVALUE( 'YourTable'[YourColumn] )
    RETURN
    IF( 
        SelectedValue IN { "bOPV", "IPV" }, 
        "YES", 
        "NO" 
    )