<?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: Show Dates that blank irrespective of the date slicer selection in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2243033#M53765</link>
    <description>&lt;P&gt;Works perfectly as expected. Thank you so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Dec 2021 18:03:38 GMT</pubDate>
    <dc:creator>AnthonyJoseph</dc:creator>
    <dc:date>2021-12-16T18:03:38Z</dc:date>
    <item>
      <title>Show Dates that blank irrespective of the date slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2242332#M53726</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with 4 columns.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to have "&lt;EM&gt;Completed or Stat date"&lt;/EM&gt; column as date slicer and my table visual should show the rows with the blank date (irrespective of date slicer selection) along with the rows falling in the selected date.&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;If I filter by dates 1 - June-21 to 31-Dec-21 in&amp;nbsp;"&lt;EM&gt;Completed or Stat date".&lt;/EM&gt;&lt;BR /&gt;My table should show all the rows that are in the date range (1 - June-21 to 31-Dec-21) and also the row items that have a blank value in the "&lt;EM&gt;Completed or Stat date".&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Thanks,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 11:48:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2242332#M53726</guid>
      <dc:creator>AnthonyJoseph</dc:creator>
      <dc:date>2021-12-16T11:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Show Dates that blank irrespective of the date slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2242425#M53730</link>
      <description>&lt;P&gt;I would do the following.&lt;BR /&gt;&lt;BR /&gt;1) Create a disconnected date table (if Power Bi puts a relationship in delete it)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Date = CALENDARAUTO(12)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Add a measure to your table (I called mine Task):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Date Filter = 
VAR SelectedDates = 
    CALCULATETABLE (
        VALUES( Task[Completed or Stat Date]),
        TREATAS ( VALUES ( 'Date'[Date] ), Task[Completed or Stat Date] )
    )

VAR RowsToInclude =
    FILTER (
        VALUES( Task[Completed or Stat Date] ),
        SelectedDates || ISBLANK( Task[Completed or Stat Date] )
    )

VAR ShowDate = INT ( NOT ( ISEMPTY ( RowsToInclude ) ) )
    
RETURN 
    ShowDate&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Use the date column from your new date table in the slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) In your table visual put the "Date Filter" measure into the visual filter pane and set it to "Is 1"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I'm getting I think your desired results:&lt;BR /&gt;&lt;BR /&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;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 13:12:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2242425#M53730</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-16T13:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Show Dates that blank irrespective of the date slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2243033#M53765</link>
      <description>&lt;P&gt;Works perfectly as expected. Thank you so much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 18:03:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/2243033#M53765</guid>
      <dc:creator>AnthonyJoseph</dc:creator>
      <dc:date>2021-12-16T18:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Show Dates that blank irrespective of the date slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/4063951#M161330</link>
      <description>&lt;P&gt;Had the same issue. Your solution works! Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 14:19:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-Dates-that-blank-irrespective-of-the-date-slicer-selection/m-p/4063951#M161330</guid>
      <dc:creator>Kate_Lashko</dc:creator>
      <dc:date>2024-07-26T14:19:32Z</dc:date>
    </item>
  </channel>
</rss>

