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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dokat
Post Prodigy
Post Prodigy

Show multiple slicer selection as dynamic text

Hi,

 

I'd like to show slicer selections on the report as dynamic text like below. Is this possible to do in Power BI? I have slicer name, Dairy, Milk, Skim. Appreciate any help

 

US > Dairy > Milk > Skim

1 ACCEPTED SOLUTION
dokat
Post Prodigy
Post Prodigy

Below formula works

 

Title =
"US > DAIRY> "
& (CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Dairy])
&
" >"
&

CONCATENATEX (
VALUES ( 'Dairy'[Milk] ),
'Dairy'[Milk],
", "

))

View solution in original post

5 REPLIES 5
dokat
Post Prodigy
Post Prodigy

Below formula works

 

Title =
"US > DAIRY> "
& (CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Dairy])
&
" >"
&

CONCATENATEX (
VALUES ( 'Dairy'[Milk] ),
'Dairy'[Milk],
", "

))

amitchandak
Super User
Super User

@dokat , On why is drag them in one slicer and create Hierarchical slicer.

 

Second use bookmarks. Show hide.

 

Thrid is - unpivot all these columns and you will get these names in rows. Then create two slicers one with a column name, another with values

 

https://radacad.com/pivot-and-unpivot-with-power-bi

I tried below formula it works for the first slicer(Dairy) and doesnt show the value in second slicer(Milk) and anytime it is not selected it shows all the values. I want it to show only values when slicer is selected.

 

Title =
"US > STATIONERY > "
& CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Milk],

", ",
CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Milk],
))

@dokat ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

@amitchandak   Ultimately I want outcome to look like below.

 

US > Dairy > Milk        Dairy and Milk Slicer Selection

or

US > Dairy                    Dairy Slice Selection

or US                             No Slicer Slection

 

I tried below formula it works for the most part however still shows ">" when no slicer is selected and i'd like it to show blank when no slicer is selected

 

Title = "US > Dairy> "
&
SELECTEDVALUE('Dairy'[Dairy],"")
&
" >"
&

SELECTEDVALUE('Dairy'[Milk],"")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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