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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
DataVizGuy
Advocate I
Advocate I

Dynamic Title Based on Date Hierarchy

I am trying to implement a dynamic title displaying Fiscal Year (calculated column within a date table), but only when the full Fiscal Year is displayed within the visual.

 

If the end user selects a specific quarter and/or month from the date hierarchy, I would want the title to show up as blank.

 

Any ideas on how to implement this? So far I have the following DAX:

 

FYLabel = 
VAR SelectedFY =
    IF(ISFILTERED('Date Table'[FY]),VALUES('Date Table'[FY]))
    RETURN
    SELECTEDFY

 

 

However the code above still shows the selected Fiscal Year, even when only certain quarters or months are selected underneath that Fiscal Year. 

1 REPLY 1
ChiragGarg2512
Solution Sage
Solution Sage

@DataVizGuy , this happens because quarters and months do filter the fiscal years. Keep only the fiscal year slicer and add blank in the if statement for when it's false.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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