<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help - DAX Measure for Dynamic Chart Title with DrillDown in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116221#M16272</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212991" data-lia-user-login="bboobe" class="lia-mention lia-mention-user"&gt;bboobe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;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" &amp;amp; Geography &amp;amp; MonthPart&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 24 May 2020 07:47:00 GMT</pubDate>
    <dc:creator>nandukrishnavs</dc:creator>
    <dc:date>2020-05-24T07:47:00Z</dc:date>
    <item>
      <title>Help - DAX Measure for Dynamic Chart Title with DrillDown</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116197#M16270</link>
      <description>&lt;P&gt;Dear Experts,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create the below measure but it is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Measure -&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Test Chart Title =&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Var MonthPart = SELECTEDVALUE('Time Day'[Month_Year],"Current Month")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Var Geography = IF(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ISFILTERED('PS Location'[COUNTRY],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SELECTEDVALUE('PS Location'[COUNTRY]),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"" )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Country Wise" &amp;amp; Geography &amp;amp; MonthPart&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Geography is not returned in this measure. Please help.&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 06:59:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116197#M16270</guid>
      <dc:creator>bboobe</dc:creator>
      <dc:date>2020-05-24T06:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help - DAX Measure for Dynamic Chart Title with DrillDown</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116221#M16272</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212991" data-lia-user-login="bboobe" class="lia-mention lia-mention-user"&gt;bboobe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;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" &amp;amp; Geography &amp;amp; MonthPart&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 07:47:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116221#M16272</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-05-24T07:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help - DAX Measure for Dynamic Chart Title with DrillDown</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116225#M16273</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="32333" data-lia-user-login="nandukrishnavs" class="lia-mention lia-mention-user"&gt;nandukrishnavs&lt;/a&gt;&amp;nbsp; It Worked!! Awesome, Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 08:02:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-DAX-Measure-for-Dynamic-Chart-Title-with-DrillDown/m-p/1116225#M16273</guid>
      <dc:creator>bboobe</dc:creator>
      <dc:date>2020-05-24T08:02:52Z</dc:date>
    </item>
  </channel>
</rss>

