Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello, I'm wondering if someone has a solution for creating a dymanic label while using a data hierarcy slicer. I'm trying to create a label that will display year and qtr but display these with the year associated with them for example if I choose 2020 Q4 and 2021 Q1 my label will show "2020, 2021, Qtr 1, Qtr 4", currently I'm using the concatenate quick measure to accomplish this (see my label below). Is there a way to show the Year/Quarter/Month/Dates selected together like: "2020 Qtr 4, 2021 Qtr 1" Here's my slicer and my label:
Solved! Go to Solution.
Hi @Anonymous ,
To what I can see you are using the auto datetime, try the following measure:
Label Year/quarters =
CONCATENATEX (
SUMMARIZE ( 'Table', 'Table'[Date].[Year], 'Table'[Date].[Quarter] ),
'Table'[Date].[Year] & 'Table'[Date].[Quarter],
", "
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
To what I can see you are using the auto datetime, try the following measure:
Label Year/quarters =
CONCATENATEX (
SUMMARIZE ( 'Table', 'Table'[Date].[Year], 'Table'[Date].[Quarter] ),
'Table'[Date].[Year] & 'Table'[Date].[Quarter],
", "
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThank you Miguel Felix! This is exactly what I needed and it worked!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.