<?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 Dax Measure for One date Dependent upon days calculation from another Date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Measure-for-One-date-Dependent-upon-days-calculation-from/m-p/4350131#M172758</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am new to the community and trying to decifer a way to write a dax measure to determine the following:&lt;/P&gt;&lt;P&gt;I have a "submitted date" and a "reviewed date"&lt;/P&gt;&lt;P&gt;I want to know if the item was reviewed within 10 days of the submitted date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help with writing the measure to find this outcome?&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jan 2025 18:01:03 GMT</pubDate>
    <dc:creator>jeffr6596</dc:creator>
    <dc:date>2025-01-03T18:01:03Z</dc:date>
    <item>
      <title>Dax Measure for One date Dependent upon days calculation from another Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Measure-for-One-date-Dependent-upon-days-calculation-from/m-p/4350131#M172758</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am new to the community and trying to decifer a way to write a dax measure to determine the following:&lt;/P&gt;&lt;P&gt;I have a "submitted date" and a "reviewed date"&lt;/P&gt;&lt;P&gt;I want to know if the item was reviewed within 10 days of the submitted date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help with writing the measure to find this outcome?&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 18:01:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Measure-for-One-date-Dependent-upon-days-calculation-from/m-p/4350131#M172758</guid>
      <dc:creator>jeffr6596</dc:creator>
      <dc:date>2025-01-03T18:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Measure for One date Dependent upon days calculation from another Date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Measure-for-One-date-Dependent-upon-days-calculation-from/m-p/4350268#M172763</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908009" data-lia-user-login="jeffr6596" class="lia-mention lia-mention-user"&gt;jeffr6596&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to me that since the durations between these dates don't change, a calculated column could be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Days = [Reviewed Date] - [Submitted Date]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change the datatype to whole number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then add a measure as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Reviewed Late = 
    COUNTROWS(
        FILTER(
            'Sheet1',
            'Sheet1'[Days] &amp;gt; 10
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you have any questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://1drv.ms/u/c/64051cfa8dac7a71/EeSKw0Pla2pOn1LOc5KQ858Bul_rxaEi3hAcRwUEM3hvJA?e=5nlphR" target="_blank" rel="noopener"&gt;Check Review Date.pbix&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 21:12:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Measure-for-One-date-Dependent-upon-days-calculation-from/m-p/4350268#M172763</guid>
      <dc:creator>gmsamborn</dc:creator>
      <dc:date>2025-01-03T21:12:08Z</dc:date>
    </item>
  </channel>
</rss>

