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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Dynamic text based on multiple filters

Hello,

 

I have a Headline Text where I want to showcase what filters have been applied.

 

What I have:

Xilitor01_0-1664880000911.png

 

What I am looking for (or something similar)

It shoul filter the headline text so it easy to see what filters have been made to the data.

Xilitor01_1-1664880098101.png

 

 

The data/example is just sample data. On my actual page I have more than 10 different slicers, which is why I am looking for a solution to easily get an overview of what has been selected.

 

I hope someone can help 🙂

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

You need to create this measure to get dynamic text.

Selection = Var City=CONCATENATE("City: ",SELECTEDVALUE(Sheet2[city ]))
Var Channel= CONCATENATE("Sales Channel: ",SELECTEDVALUE(Sheet2[sales Channel]))
return
CONCATENATE(CONCATENATE(City,", "),Channel)
 
 
This is the output came for my data
BIHelper_0-1664887873161.png

Thank You!
Mark this as solution if it satisfyies your requirement.

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

You need to create this measure to get dynamic text.

Selection = Var City=CONCATENATE("City: ",SELECTEDVALUE(Sheet2[city ]))
Var Channel= CONCATENATE("Sales Channel: ",SELECTEDVALUE(Sheet2[sales Channel]))
return
CONCATENATE(CONCATENATE(City,", "),Channel)
 
 
This is the output came for my data
BIHelper_0-1664887873161.png

Thank You!
Mark this as solution if it satisfyies your requirement.

 

amitchandak
Super User
Super User

@Anonymous ,

 

You have to create a measure like

= "Country " & concatenatex(Table, Table[Country], " ," ) & "Postal Code" & concatenatex(Table, Table[Postal Code], " ," )

 

add others as per need

 

Concatenatex: https://www.youtube.com/watch?v=du2HSEzng2E&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=43

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thanks for your reply!

 

Becauwe we'd have more than 10 filters it will not create a good overview of the selected slicers as it will always show Country, Postal Code, etc.

 

Is it not possible only to show the Slicers which have been selected?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors