<?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: Recreate Historical Inventory with Production Report in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4691285#M179639</link>
    <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We wanted to check in regarding your query, as we have not heard back from you. If you have resolved the issue, sharing the solution with the community would be greatly appreciated and could help others encountering similar challenges.&lt;/P&gt;
&lt;P&gt;If you found our response useful, kindly mark it as the accepted solution and provide kudos to guide other members.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 17:24:59 GMT</pubDate>
    <dc:creator>v-pnaroju-msft</dc:creator>
    <dc:date>2025-05-13T17:24:59Z</dc:date>
    <item>
      <title>Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4620217#M176831</link>
      <description>&lt;P&gt;I am trying to recreate historical inventory from a production report.&amp;nbsp; The production report has a Task ID, Work type, Received Date, Processed Date, and Inbox.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I want to capture inventory for each day.&amp;nbsp; Example screenshot attached.&lt;/LI&gt;&lt;LI&gt;If a work item is received on 1/1/2025 and is processed on 1/1/2025, the work item should be captured as inventory for 1/1/2025 and then removed 1/2/2025.&lt;/LI&gt;&lt;LI&gt;I cannot match the manually created historical numbers.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Below is the a version of the measure that I am trying to get to work.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daily Inventory =&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR TargetDate = Max('Calendar'[Date])&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;COUNTROWS('ProductionTable',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;FILTER('ProductionTable',&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'ProductionTable'[ReceivedDate] &amp;lt;= TargetDate &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;(ISBLANK('ProductionTable'[ProcessedDate]) ||&amp;nbsp;'ProductionTable'[ProcessedDate] &amp;gt; TargetDate)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 17:37:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4620217#M176831</guid>
      <dc:creator>Lightsoutflyer3</dc:creator>
      <dc:date>2025-03-21T17:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4620460#M176841</link>
      <description>&lt;P&gt;Daily Inventory =&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR TargetDate = Max('Calendar'[Date])&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;COUNTROWS('ProductionTable'),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FILTER(&lt;/P&gt;&lt;P&gt;ALL(&lt;/P&gt;&lt;P&gt;'ProductionTable'[ReceivedDate],&lt;/P&gt;&lt;P&gt;'ProductionTable'[ProcessedDate]&lt;/P&gt;&lt;P&gt;),&lt;/P&gt;&lt;P&gt;'ProductionTable'[ReceivedDate] &amp;lt;= TargetDate &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;ISBLANK('ProductionTable'[ProcessedDate]) ||&lt;/P&gt;&lt;P&gt;'ProductionTable'[ProcessedDate] &amp;gt; TargetDate)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Added a ALL() to the filter to remove the effect of the calendar table, and limited down to just the columns to reduce table materialization&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 22:24:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4620460#M176841</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-21T22:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4622989#M176956</link>
      <description>&lt;P&gt;The additional ALL came back with the same totals for my graph.&amp;nbsp; I might need to adjust something else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for reviewing.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 20:35:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4622989#M176956</guid>
      <dc:creator>Lightsoutflyer3</dc:creator>
      <dc:date>2025-03-24T20:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4681722#M179316</link>
      <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1231947" data-lia-user-login="Deku" class="lia-mention lia-mention-user"&gt;Deku&lt;/a&gt;, for your response.&lt;BR /&gt;&lt;BR /&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We sincerely appreciate your inquiry posted on the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please find attached the screenshot and the PBIX file, which may assist in resolving the issue:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If you find our response helpful, kindly mark it as the accepted solution and provide kudos. This will greatly help other community members who may have similar queries.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 10:22:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4681722#M179316</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-06T10:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4687531#M179520</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We have not received a response from you regarding the query and were following up to check if you have found a resolution. If you have identified a solution, we kindly request you to share it with the community, as it may be helpful to others facing a similar issue.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find the response helpful, please mark it as the accepted solution and provide kudos, as this will help other members with similar queries.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 May 2025 16:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4687531#M179520</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-10T16:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4691285#M179639</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We wanted to check in regarding your query, as we have not heard back from you. If you have resolved the issue, sharing the solution with the community would be greatly appreciated and could help others encountering similar challenges.&lt;/P&gt;
&lt;P&gt;If you found our response useful, kindly mark it as the accepted solution and provide kudos to guide other members.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 17:24:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4691285#M179639</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-13T17:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4696362#M179868</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;We are following up to see if your query has been resolved. Should you have identified a solution, we kindly request you to share it with the community to assist others facing similar issues.&lt;/P&gt;
&lt;P&gt;If our response was helpful, please mark it as the accepted solution and provide kudos, as this helps the broader community.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 17:39:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4696362#M179868</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-16T17:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4696500#M179870</link>
      <description>&lt;P&gt;Thank you for the update.&amp;nbsp; I incorporated the updates and still do not get the results that I am looking for.&amp;nbsp; The inventory numbers being returned is almost doubles my target number.&amp;nbsp; I will have to review my data set.&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 21:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4696500#M179870</guid>
      <dc:creator>Lightsoutflyer3</dc:creator>
      <dc:date>2025-05-16T21:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4698588#M179977</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;We are following up to see if your query has been resolved. Should you have identified a solution, we kindly request you to share it with the community to assist others facing similar issues.&lt;/P&gt;
&lt;P&gt;If our response was helpful, please mark it as the accepted solution, as this helps the broader community.&lt;BR /&gt;&lt;SPAN&gt;If the issue remains unresolved, please provide sample data that comprehensively illustrates your problem or question in a usable format (not as a screenshot). Kindly ensure that no sensitive or unrelated information is included.Please also indicate the expected outcome based on the sample data provided.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 16:09:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4698588#M179977</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-06-17T16:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4701992#M180096</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We are writing to follow up on whether your query has been resolved. If you have found a solution, we kindly request you to share it with the community to help others who may be facing a similar issue.&lt;/P&gt;
&lt;P&gt;If the issue remains unresolved, please provide sample data that comprehensively illustrates your problem or question in a usable format (not as a screenshot). Kindly ensure that no sensitive or unrelated information is included.Please also indicate the expected outcome based on the sample data provided.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 15:08:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4701992#M180096</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-21T15:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4724261#M180954</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We are reaching out to check if your query has been resolved. If you have found a solution, we would greatly appreciate it if you could share it with the community to assist others encountering the same issue.&lt;/P&gt;
&lt;P&gt;If the problem still persists, please provide sample data that clearly demonstrates your issue or question in a usable format (please avoid screenshots). Make sure the data does not contain any sensitive or irrelevant information. Additionally, please specify the expected result based on the sample data you provide.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 16:12:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4724261#M180954</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-06-17T16:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Recreate Historical Inventory with Production Report</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4754046#M182027</link>
      <description>&lt;P&gt;Hi Lightsoutflyer3,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Can you please confirm if your issue has been resolved? If yes, you are welcome to share your solution and mark it as solved so that other users can benefit too. This will help other community members with similar problems to find a solution faster.&lt;/P&gt;
&lt;P&gt;If we do not hear from you, we will close this thread. If you need any further help in the future, please reach out through the Microsoft Fabric Community Forum and create a new thread. We will be happy to assist you.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 06:27:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Recreate-Historical-Inventory-with-Production-Report/m-p/4754046#M182027</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-07-06T06:27:07Z</dc:date>
    </item>
  </channel>
</rss>

