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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.