The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |