<?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: Trying to display the latest month's data/visual only in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4033157#M159641</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81736" data-lia-user-login="aduguid" class="lia-mention lia-mention-user"&gt;aduguid&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your kind explanation and your table that lists "Latest Month".&lt;/P&gt;&lt;P&gt;But, I am still trying to understand by using your table, how does it trigger to stay the visual at the latest month.&lt;/P&gt;&lt;P&gt;I have uploaded &lt;A href="https://drive.google.com/file/d/16sFSoYzzQ2CZOpmTBVkAAYzX3hM_YvNW/view?usp=sharing" target="_self"&gt;my latest PBI file&lt;/A&gt; for your reference.&lt;/P&gt;&lt;P&gt;I see the previous slicer that I has the "Latest Date Slicer" only has one option, but when I applied to visual, I &lt;STRONG&gt;do not have an option to choose previous months&lt;/STRONG&gt; (they are not available), so I think it is a problem.&lt;/P&gt;&lt;P&gt;How do I make the visual to select the latest month whenever it refreshes (daily), but still have an option to choose previous months?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2024 20:02:19 GMT</pubDate>
    <dc:creator>JustinDoh1</dc:creator>
    <dc:date>2024-07-09T20:02:19Z</dc:date>
    <item>
      <title>Trying to display the latest month's data/visual only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4025618#M158916</link>
      <description>&lt;P&gt;I have a visual that has been manually published on a monthly basis.&lt;/P&gt;&lt;P&gt;Now, I am trying to dynamically display only the latest month's visual/data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have &lt;A href="https://drive.google.com/file/d/1TiPB-jShe9s1q09qwpjaKTCMtgyYcHHt/view?usp=sharing" target="_self"&gt;my PBI file uploaded here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have researched little bit, and I found a way to create another slicer like this (from &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Set-most-recent-date-as-default-to-slicer/m-p/1004001/highlight/true#M476251" target="_self"&gt;this post )&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Lastest Date Slicer = IF(Table[Date] = MAX(Table[Date]),LASTDATE(Table[Date]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to do is, whenever report gets refreshed &lt;STRONG&gt;daily now&lt;/STRONG&gt;, I would like this report to be refreshed to latest "&lt;STRONG&gt;Processing Date&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;The bottom demo shows that I have "Latest Date Slicer" added.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to understand is, if I schedule my report to be refreshed daily, would it automatically show the latest month's data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How does placing the "&lt;STRONG&gt;Latest Date Slicer&lt;/STRONG&gt;" in the visual make the whole visual stay with the latest data?&lt;/P&gt;&lt;P&gt;I am trying to understand how this slicer (Latest Date Slicer) would impact.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also, is there another approach rather using this "Latest Date Slicer" to make the visual showing the latest month?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 19:04:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4025618#M158916</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-07-04T19:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to display the latest month's data/visual only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4025795#M158940</link>
      <description>&lt;P&gt;I ran into this same issue. I created a DAX query and then relating it back to the original table. After that change your slicer to use "Processing_Date_Label" and set it to "Latest Date". Then you'll always get the latest month.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Processing Month = 
    DISTINCT(SELECTCOLUMNS (
        'Table',
		"Processing_Date", 'Table'[Processing_Date],
        "Processing_Date_Label", IF('Table'[Processing_Date] = MAX('Table'[Processing_Date]), "Latest Month", FORMAT('Table'[Processing_Date], "MMM-yyyy")
    )))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 02:39:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4025795#M158940</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-05T02:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to display the latest month's data/visual only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4027645#M159105</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81736" data-lia-user-login="aduguid" class="lia-mention lia-mention-user"&gt;aduguid&lt;/a&gt;&amp;nbsp;Thank you for your post. The code you have indicated, is this measure or column?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got this error message saying "multiple columns cannot be converted to a scalar value."&lt;/P&gt;&lt;P&gt;(Sorry for weird table name, I tried to rename it, but I was not able to).&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 22:10:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4027645#M159105</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-07-05T22:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to display the latest month's data/visual only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4027767#M159116</link>
      <description>&lt;P&gt;It's a DAX table/query&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I probably should have named it a bit better&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Processing Month Table = 
    DISTINCT(SELECTCOLUMNS (
        'Table',
		"Processing_Date", 'Table'[Processing_Date],
        "Processing_Date_Label", IF('Table'[Processing_Date] = MAX('Table'[Processing_Date]), "Latest Month", FORMAT('Table'[Processing_Date], "MMM-yyyy")
    )))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jul 2024 02:05:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4027767#M159116</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-07-06T02:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to display the latest month's data/visual only</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4033157#M159641</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81736" data-lia-user-login="aduguid" class="lia-mention lia-mention-user"&gt;aduguid&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your kind explanation and your table that lists "Latest Month".&lt;/P&gt;&lt;P&gt;But, I am still trying to understand by using your table, how does it trigger to stay the visual at the latest month.&lt;/P&gt;&lt;P&gt;I have uploaded &lt;A href="https://drive.google.com/file/d/16sFSoYzzQ2CZOpmTBVkAAYzX3hM_YvNW/view?usp=sharing" target="_self"&gt;my latest PBI file&lt;/A&gt; for your reference.&lt;/P&gt;&lt;P&gt;I see the previous slicer that I has the "Latest Date Slicer" only has one option, but when I applied to visual, I &lt;STRONG&gt;do not have an option to choose previous months&lt;/STRONG&gt; (they are not available), so I think it is a problem.&lt;/P&gt;&lt;P&gt;How do I make the visual to select the latest month whenever it refreshes (daily), but still have an option to choose previous months?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 20:02:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Trying-to-display-the-latest-month-s-data-visual-only/m-p/4033157#M159641</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2024-07-09T20:02:19Z</dc:date>
    </item>
  </channel>
</rss>

