<?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: Dynamic Title in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962330#M98730</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485260" data-lia-user-login="Navaneeth" class="lia-mention lia-mention-user"&gt;Navaneeth&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;If you don't have complete contiguous dates then you need to use a date table for the slicer.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Dec 2022 11:33:04 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-12-12T11:33:04Z</dc:date>
    <item>
      <title>Dynamic Title</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962301#M98727</link>
      <description>&lt;P&gt;I have a date slicer where im selecting between dates , however even when im selecting two dates from the slicer i m unable to get the dynamic title to show the title from which date to which date the data has been selected .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to show that on a card or any other visual when ever i select the date , i should see the selected dates&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 11:22:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962301#M98727</guid>
      <dc:creator>Navaneeth</dc:creator>
      <dc:date>2022-12-12T11:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Title</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962330#M98730</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485260" data-lia-user-login="Navaneeth" class="lia-mention lia-mention-user"&gt;Navaneeth&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;If you don't have complete contiguous dates then you need to use a date table for the slicer.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 11:33:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962330#M98730</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-12T11:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Title</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962400#M98736</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 12:13:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962400#M98736</guid>
      <dc:creator>Navaneeth</dc:creator>
      <dc:date>2022-12-12T12:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Title</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962604#M98749</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485260" data-lia-user-login="Navaneeth" class="lia-mention lia-mention-user"&gt;Navaneeth&lt;/a&gt;&amp;nbsp;hi, what code do you have for the measure at the moment?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 13:21:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/2962604#M98749</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-12T13:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Title</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/3005160#M101654</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485260" data-lia-user-login="Navaneeth" class="lia-mention lia-mention-user"&gt;Navaneeth&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calendar date first .&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = ADDCOLUMNS( CALENDAR(DATE(2022,12,1),DATE(2023,1,6)),"Value",MONTH([Date])+DAY([Date]))&lt;/LI-CODE&gt;
&lt;P&gt;Then create a measure to return the Min date and Max date .&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dynamic Title = "Between "&amp;amp; MIN('Table'[Date]) &amp;amp; " and " &amp;amp;MAX('Table'[Date])&lt;/LI-CODE&gt;
&lt;P&gt;Add the measure in custom value in visual .&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The final result is as shown below .&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 08:00:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dynamic-Title/m-p/3005160#M101654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-06T08:00:12Z</dc:date>
    </item>
  </channel>
</rss>

