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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Use CONCATENATEX twice for two slicers in dynamic title

Hi there,

 

I'm a bit stuck with some syntax. I have two slicers for a matrix and I want to include a dynamic title that covers both slicers. 

I have the measure working for a single slicer, when I try to add the second, it breaks. 

 

This is what I have, can you please let me know where I've gone wrong?

 

Tracker Title = "CASE TRACKER FOR "& UPPER(CONCATENATEX(VALUES('Tracking'[Business Type]),'Tracking'[Business Type]," | ")) && "AND" & UPPER(CONCATENATEX(VALUES('Tracking'[Quote Status]),'Tracking'[Quote Status]," | "))

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @amitchandak 

 

ALLSELECTED is not working either. The error is that it cannot convert type Text to type True/False. 

I just tried removing the double ampersand from between the two arguments, and it's working now!

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

Tracker Title = "CASE TRACKER FOR "& UPPER(CONCATENATEX(allselected('Tracking'[Business Type]),'Tracking'[Business Type]," | ")) && "AND" & UPPER(CONCATENATEX(allselected('Tracking'[Quote Status]),'Tracking'[Quote Status]," | "))

 

what is the error you are getting

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

Hi @amitchandak 

 

ALLSELECTED is not working either. The error is that it cannot convert type Text to type True/False. 

I just tried removing the double ampersand from between the two arguments, and it's working now!

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors