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.
Hello,
I need advice related to seceltion value in slicer.
My current code looks like:
I want to add aslo month
And wand information like this:
Sales for: Q1 (Month: 1,2), Q2 (Month: 4)
Could you please help me write code i DAX
Try something like this:
Matrix Title =
"Sales for: " &
CONCATENATEX(
VALUES('Calendar'[Quarter]),
'Calendar'[Quarter] & " (Month: " & CONCATENATEX(CALCULATETABLE('Calendar'), 'Calendar'[Month], ", ") & ") ",
", "
)