Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
Solved! Go to Solution.
@dofrancis3
I hope you make single section on the slicer.
DynamicTitle =
VAR SelectedValue = SELECTEDVALUE( 'YourTable'[YourColumn] )
RETURN
IF(
SelectedValue IN { "bOPV", "IPV" },
"YES",
"NO"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@dofrancis3
I hope you make single section on the slicer.
DynamicTitle =
VAR SelectedValue = SELECTEDVALUE( 'YourTable'[YourColumn] )
RETURN
IF(
SelectedValue IN { "bOPV", "IPV" },
"YES",
"NO"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |