March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to Solution.
Below formula works
Title =
"US > DAIRY> "
& (CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Dairy])
&
" >"
&
CONCATENATEX (
VALUES ( 'Dairy'[Milk] ),
'Dairy'[Milk],
", "
))
Below formula works
Title =
"US > DAIRY> "
& (CONCATENATEX (
VALUES ( 'Dairy'[Dairy] ),
'Dairy'[Dairy])
&
" >"
&
CONCATENATEX (
VALUES ( 'Dairy'[Milk] ),
'Dairy'[Milk],
", "
))
@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.
@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],"")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
122 | |
89 | |
74 | |
59 | |
53 |
User | Count |
---|---|
196 | |
121 | |
108 | |
68 | |
65 |