<?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: Missing 1 day in calculation results in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3151828#M112910</link>
    <description>&lt;P&gt;Yes, I have&amp;nbsp;&lt;SPAN&gt;'Alert Data'&lt;/SPAN&gt; data for 28.02&lt;/P&gt;</description>
    <pubDate>Fri, 24 Mar 2023 07:42:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-03-24T07:42:31Z</dc:date>
    <item>
      <title>Missing 1 day in calculation results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3150531#M112838</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I prepared DAX calculation which generate number of unique alerts for from 01.02.23 to 28.02.23:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alerts Generated = CALCULATE(DISTINCTCOUNT('Alert Data'[Alert ID]), FILTER('Alert Data','Alert Data'[Creation Date]&amp;gt;= MAX(START_DATE[START_DATE]) &amp;amp;&amp;amp;'Alert Data'[Creation Date] &amp;lt;= MAX(END_DATE[END_DATE])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to have number of alerts for each day of February in 1 line chart. All looks good but when I put measure into line chart value I am missing 28.02 alerts.&lt;/P&gt;&lt;P&gt;START_DATE[START_DATE] is a parameter from powerquery: 01-02-2023&lt;/P&gt;&lt;P&gt;END_DATE[END_DATE]) is parameter 28-02-2023&lt;/P&gt;&lt;P&gt;'Alert Data'[Creation Date] and START_DATE[START_DATE] /&amp;nbsp;END_DATE[END_DATE]) have the same date format.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And ofc. I have data for&amp;nbsp;'Alert Data'[Creation Date] from 28.02.2023&lt;/P&gt;&lt;P&gt;I have no idea why I am missing it on chart.&lt;img /&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2023 16:12:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3150531#M112838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-23T16:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Missing 1 day in calculation results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3150865#M112846</link>
      <description>&lt;P&gt;Do you have data from the&amp;nbsp;&lt;SPAN&gt;'Alert Data' for the 28.02 ? Can you check it please?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2023 19:01:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3150865#M112846</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-23T19:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Missing 1 day in calculation results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3151828#M112910</link>
      <description>&lt;P&gt;Yes, I have&amp;nbsp;&lt;SPAN&gt;'Alert Data'&lt;/SPAN&gt; data for 28.02&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 07:42:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3151828#M112910</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-24T07:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Missing 1 day in calculation results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3152456#M112969</link>
      <description>&lt;P&gt;It is diffcult or not clear where the problem is. Perhaps you are able to share the PBI?&lt;/P&gt;&lt;P&gt;In general check if the visual has a filter directly or from a slicer? Change the graph to matrix and check if you can the data from the missing date.&amp;nbsp;&lt;BR /&gt;I only see one thing:&lt;BR /&gt;&lt;SPAN&gt;CALCULATE(DISTINCTCOUNT('Alert Data'[Alert ID]), FILTER('Alert Data','Alert Data'[Creation Date]&amp;gt;= MAX(START_DATE[START_DATE]) &amp;amp;&amp;amp;'Alert Data'[Creation Date] &amp;lt;= MAX(END_DATE[END_DATE])))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-&amp;gt; ALL()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE(DISTINCTCOUNT('Alert Data'[Alert ID]), FILTER(&lt;STRONG&gt;ALL('Alert Data')&lt;/STRONG&gt;,'Alert Data'[Creation Date]&amp;gt;= MAX(START_DATE[START_DATE]) &amp;amp;&amp;amp;'Alert Data'[Creation Date] &amp;lt;= MAX(END_DATE[END_DATE])))&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 24 Mar 2023 12:10:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3152456#M112969</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-24T12:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Missing 1 day in calculation results</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3152752#M112989</link>
      <description>&lt;P&gt;Thank you for your reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, I can not share powerbi file because it contains sentisive data.&lt;/P&gt;&lt;P&gt;Unfortunately query with ALL() also does not work. The only thing which helps is removing part: &amp;lt;= (END_DATE[END_DATE])&lt;/P&gt;&lt;P&gt;So when I have query like:&amp;nbsp;&lt;SPAN&gt;CALCULATE(DISTINCTCOUNT('Alert Data'[Alert ID]), FILTER('Alert Data','Alert Data'[Creation Date]&amp;gt;= MAX(START_DATE[START_DATE]) ))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;then data for 28.02 is visible.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But it is really weird why it happens... And I would like to find solution to make date limitation.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2023 14:26:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Missing-1-day-in-calculation-results/m-p/3152752#M112989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-24T14:26:42Z</dc:date>
    </item>
  </channel>
</rss>

