Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.

Reply
dofrancis3
Helper III
Helper III

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"

 

dofrancis3_0-1739267689393.png

 

Thank you for your assistance

2 ACCEPTED SOLUTIONS
Fowmy
Super User
Super 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" 
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

Dear @Fowmy 

Thank you so much

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super 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" 
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Dear @Fowmy 

Thank you so much

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors