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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
bboobe
Helper I
Helper I

Help - DAX Measure for Dynamic Chart Title with DrillDown

Dear Experts, 

 

I am trying to create the below measure but it is not working.

 

Measure - 

      Test Chart Title =

               Var MonthPart = SELECTEDVALUE('Time Day'[Month_Year],"Current Month")
               Var Geography = IF(
                   ISFILTERED('PS Location'[COUNTRY],
                   SELECTEDVALUE('PS Location'[COUNTRY]), "" )
      return
"Country Wise" & Geography & MonthPart

 

      Chart Title PBI.JPG
 

Geography is not returned in this measure. Please help.

1 ACCEPTED SOLUTION
nandukrishnavs
Community Champion
Community Champion

@bboobe 

 

Try this 

Test Chart Title =
VAR MonthPart =
    SELECTEDVALUE (
        'Time Day'[Month_Year],
        "Current Month"
    )
VAR Geography =
    IF (
        ISFILTERED ( 'PS Location'[COUNTRY] ),
        SELECTEDVALUE ( 'PS Location'[COUNTRY] ),
        ""
    )
RETURN
    "Country Wise" & Geography & MonthPart



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂


Regards,
Nandu Krishna

View solution in original post

2 REPLIES 2
nandukrishnavs
Community Champion
Community Champion

@bboobe 

 

Try this 

Test Chart Title =
VAR MonthPart =
    SELECTEDVALUE (
        'Time Day'[Month_Year],
        "Current Month"
    )
VAR Geography =
    IF (
        ISFILTERED ( 'PS Location'[COUNTRY] ),
        SELECTEDVALUE ( 'PS Location'[COUNTRY] ),
        ""
    )
RETURN
    "Country Wise" & Geography & MonthPart



Did I answer your question? Mark my post as a solution!
Appreciate with a kudos
🙂


Regards,
Nandu Krishna

@nandukrishnavs  It Worked!! Awesome, Thanks!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.