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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Team,
Weired but helpfull for me to create a dynamic Title.
I have 2 column which is "State" and "Jurisdiction". Can i create a combined slicer for this. Just to show"Select All","State"and "Jurisdiction"
This i just to give the reference to the dynamic title.
if i select any one of them the title should change accordingly.
In the below image you can see that 2 different slicer with respective details inclueded.
i wanted to see the slicer which shows only "State"and "Jusrisdiction" in the same without any individual details.
Solved! Go to Solution.
You may create a slicer table with Distinct function first.Then create a measure like below.Attached sample file for your reference.
Measure =
IF (
ISFILTERED ( 'Table'[Jurisdiction] ) || ISFILTERED ( Table1[Industry] ),
SELECTEDVALUE ( Table1[Industry] ) & ","
& SELECTEDVALUE ( 'Table'[Jurisdiction] )
)
Regards,
You may create a slicer table with Distinct function first.Then create a measure like below.Attached sample file for your reference.
Measure =
IF (
ISFILTERED ( 'Table'[Jurisdiction] ) || ISFILTERED ( Table1[Industry] ),
SELECTEDVALUE ( Table1[Industry] ) & ","
& SELECTEDVALUE ( 'Table'[Jurisdiction] )
)
Regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!