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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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]," | "))
Solved! Go to Solution.
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!
@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
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!