<?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: Calculate sum of items based on date range and avaliable stock in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4364541#M173264</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="911636" data-lia-user-login="ClaudioF" class="lia-mention lia-mention-user"&gt;ClaudioF&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to acknowledge valuable input provided by&amp;nbsp;DataNinja777&amp;nbsp;&amp;nbsp;. Their initial ideas help guide my approach. However, I noticed that more details are needed to fully understand this issue.&lt;/P&gt;
&lt;P&gt;(1)&amp;nbsp;My test data is the same as yours.&amp;nbsp;This is my model relationship.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2) We can create a slicer table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;StatusSlicer = DATATABLE ( 
    "status", STRING, 
    {
        { "available" },
        { "out" }
    }
) &lt;/LI-CODE&gt;
&lt;P&gt;(3) We can create measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ItemStatus = 
var _quantity=CALCULATE(SUM('Table orders'[quantity]),FILTER(ALLSELECTED('Table orders'),[Item]=MAX('Table orders'[Item]) &amp;amp;&amp;amp; [date]&amp;lt;=MAX('Table orders'[date]))) 
var _stock=CALCULATE(SUM('Table stock'[quantity]),FILTER(ALL('Table stock'),[item]=MAX('Table orders'[Item])))
var _result= IF(_quantity&amp;lt;=_stock,"available","out")
RETURN IF(ISBLANK(_quantity),BLANK(),_result)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Flag = IF(ISFILTERED('StatusSlicer'[status])=FALSE() || [ItemStatus]=SELECTEDVALUE('StatusSlicer'[status]),1,0)&lt;/LI-CODE&gt;
&lt;P&gt;(4)&amp;nbsp;Place [Flag=1] on the visual object filter.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jan 2025 07:33:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-15T07:33:51Z</dc:date>
    <item>
      <title>Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360257#M173089</link>
      <description>&lt;P&gt;Hey everyone, hope you all well.&lt;/P&gt;&lt;P&gt;I'm new in the power bi, and having lots of trouble allready, can you help me with a situation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to set a status to the items of different orders based on its date and comparation between the stock and the quantity needed.&lt;/P&gt;&lt;P&gt;Example: i have three tables called: date, with comun: date; orders, with columns: order number, item, quantity and date; and stock that has columns: item, quantity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they have for example the following data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table date:&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Table stock:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;item&lt;/TD&gt;&lt;TD&gt;quantity&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;aaa&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;bbb&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Table orders:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Order num&lt;/TD&gt;&lt;TD&gt;Item&lt;/TD&gt;&lt;TD&gt;quantity&lt;/TD&gt;&lt;TD&gt;date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;111&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;aaa&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;20&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;01/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;111&lt;/TD&gt;&lt;TD&gt;bbb&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;01/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222&lt;/TD&gt;&lt;TD&gt;aaa&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;02/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;TD&gt;aaa&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;03/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;TD&gt;bbb&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;03/01/25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need a way of creating a graphic table to show, as i select a range of date in data segmentation for example: i select a range from 02 to 03/01, then based on the available stock, the status of the order number 222 will be: item aaa"available", and the other 333 item aaa will be "out" and the order 333 item bbb will be "available" but if i do not select any range and leave it all the dates selected, it will be: order 111, items aaa and bbb will be atatus "available" and the others will be "out".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also need a way to count all the "available" and "out"&amp;nbsp;&lt;/P&gt;&lt;P&gt;and i need to be able to select if i wanna se only the evailable or the out status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i don't know if i made myself clear, but could you help me please?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thankyou a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 16:40:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360257#M173089</guid>
      <dc:creator>ClaudioF</dc:creator>
      <dc:date>2025-01-12T16:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360280#M173091</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="911636" data-lia-user-login="ClaudioF" class="lia-mention lia-mention-user"&gt;ClaudioF&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To dynamically assess the status of order items based on stock availability and selected date ranges in Power BI, you can follow these steps:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;First, ensure your data model includes three tables: 'Orders' with columns for Order Number, Item, Quantity, and Date; 'Stock' with columns for Item and Quantity; and a separate 'Date' table to facilitate date filtering. Establish relationships between these tables: link the 'Orders' table to the 'Date' table via the Date column, and connect the 'Stock' table to the 'Orders' table through the Item column.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Next, calculate the cumulative stock available up to a selected date. Create a measure named 'StockOnHand' using DAX:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;StockOnHand = 
VAR SelectedDate = MAX('Date'[Date])
RETURN
CALCULATE(
    SUM('Stock'[Quantity]) - 
    SUMX(
        FILTER('Orders', 'Orders'[Date] &amp;lt;= SelectedDate),
        'Orders'[Quantity]
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;This measure computes the stock on hand for each item up to the selected date.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then, determine the status of each item by adding a calculated column in the 'Orders' table. Use the following DAX formula:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ItemStatus = 
VAR StockAvailable = [StockOnHand]
RETURN
IF('Orders'[Quantity] &amp;lt;= StockAvailable, "Available", "Out")
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;This column compares the order quantity with the available stock and assigns the status accordingly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To enable date range filtering, add a Date Slicer to your report. Connect this slicer to the 'Date' table, allowing dynamic filtering of orders based on the selected date range.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For visualization, create a table or matrix to display the Order Number, Item, Quantity, Date, and Item Status. Ensure the Date Slicer affects this visual to reflect the selected date range.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To count the number of items with each status, create two measures:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CountAvailable = 
CALCULATE(
    COUNTROWS('Orders'),
    'Orders'[ItemStatus] = "Available"
)

CountOut = 
CALCULATE(
    COUNTROWS('Orders'),
    'Orders'[ItemStatus] = "Out"
)
&lt;/LI-CODE&gt;
&lt;P&gt;These measures tally the items marked as "Available" and "Out," respectively.&lt;/P&gt;
&lt;P&gt;Finally, to filter the visual by item status, add a slicer. Create a new table with distinct statuses ("Available" and "Out"), establish a relationship between this table and the 'Orders' table based on the ItemStatus column, and use this field in the slicer. This setup allows users to filter the displayed orders based on their status.&lt;/P&gt;
&lt;P&gt;By implementing these steps, you can create a dynamic report in Power BI that displays the status of order items based on stock availability and selected date ranges, facilitating interactive filtering and providing insights into inventory management over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 17:18:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360280#M173091</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-01-12T17:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360401#M173096</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The resoult was not what i wanted, the first marked yellow should be available, due to the dates being the earlierst. the others should be out, but in this range of date, thtas not right. what sould i do?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 23:47:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4360401#M173096</guid>
      <dc:creator>ClaudioF</dc:creator>
      <dc:date>2025-01-12T23:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4364541#M173264</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="911636" data-lia-user-login="ClaudioF" class="lia-mention lia-mention-user"&gt;ClaudioF&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to acknowledge valuable input provided by&amp;nbsp;DataNinja777&amp;nbsp;&amp;nbsp;. Their initial ideas help guide my approach. However, I noticed that more details are needed to fully understand this issue.&lt;/P&gt;
&lt;P&gt;(1)&amp;nbsp;My test data is the same as yours.&amp;nbsp;This is my model relationship.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2) We can create a slicer table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;StatusSlicer = DATATABLE ( 
    "status", STRING, 
    {
        { "available" },
        { "out" }
    }
) &lt;/LI-CODE&gt;
&lt;P&gt;(3) We can create measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ItemStatus = 
var _quantity=CALCULATE(SUM('Table orders'[quantity]),FILTER(ALLSELECTED('Table orders'),[Item]=MAX('Table orders'[Item]) &amp;amp;&amp;amp; [date]&amp;lt;=MAX('Table orders'[date]))) 
var _stock=CALCULATE(SUM('Table stock'[quantity]),FILTER(ALL('Table stock'),[item]=MAX('Table orders'[Item])))
var _result= IF(_quantity&amp;lt;=_stock,"available","out")
RETURN IF(ISBLANK(_quantity),BLANK(),_result)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Flag = IF(ISFILTERED('StatusSlicer'[status])=FALSE() || [ItemStatus]=SELECTEDVALUE('StatusSlicer'[status]),1,0)&lt;/LI-CODE&gt;
&lt;P&gt;(4)&amp;nbsp;Place [Flag=1] on the visual object filter.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 07:33:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4364541#M173264</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-15T07:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4365509#M173331</link>
      <description>&lt;P&gt;Amazing! thats what i was looking for!&lt;/P&gt;&lt;P&gt;I only have one issue: when i select the checkbox of "out", it does not work properly, showing the avaliable ones too. Have any idea of how to solve it?&lt;/P&gt;&lt;P&gt;Still thankyou a lot. Since i'm new in this subject, i will keep on studying power bi until i'm a pro, so i'll investigate step by step the solution you gave in order to understand what i am doing hehe.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what i miss in this dashboard is the count of orders that has at least one "out" status in it, do you have any idea of how doing it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;plus. do you have the explanation of why the table stock is not connected to the orders table?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 16:50:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4365509#M173331</guid>
      <dc:creator>ClaudioF</dc:creator>
      <dc:date>2025-01-15T16:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4366722#M173376</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="911636" data-lia-user-login="ClaudioF" class="lia-mention lia-mention-user"&gt;ClaudioF&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your feedback. Below are some improvements:&lt;/P&gt;
&lt;P&gt;(1) Create a slicer table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;StatusSlicer = DATATABLE ( 
    "status", STRING, 
    {
        { "available" },
        { "out" }
    }
) &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(2) Create measures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 

var _quantity=CALCULATE(SUM('Table orders'[quantity]),FILTER(ALLSELECTED('Table orders'),[Item]=MAX('Table orders'[Item]) &amp;amp;&amp;amp; [date]&amp;lt;=MAX('Table orders'[date])))
var _stock=CALCULATE(SUM('Table stock'[quantity]),FILTER(ALL('Table stock'),[item]=MAX('Table orders'[Item])))
var _result= IF(_quantity&amp;lt;=_stock,"available","out")
RETURN IF(ISBLANK(_quantity),BLANK(),_result)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Status = IF(ISFILTERED('StatusSlicer'[status])=FALSE(),[Measure],SELECTEDVALUE('StatusSlicer'[status]))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Flag = IF(ISFILTERED('StatusSlicer'[status])=FALSE() || [Measure]=SELECTEDVALUE('StatusSlicer'[status]),1,0)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;CountNum(out) = CALCULATE(DISTINCTCOUNT('Table orders'[Order num]),FILTER('Table orders',[Measure]="out"))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(3)Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;As far as model relationships go, you can connect as many as you want and it won't affect this desired outcome.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&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 Jan 2025 07:52:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4366722#M173376</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-16T07:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4367019#M173383</link>
      <description>&lt;P&gt;Exactly what i need! Thankyou a lot.&lt;/P&gt;&lt;P&gt;I will implement this in my work and study these new information.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 10:49:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4367019#M173383</guid>
      <dc:creator>ClaudioF</dc:creator>
      <dc:date>2025-01-16T10:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate sum of items based on date range and avaliable stock</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4367021#M173384</link>
      <description>&lt;P&gt;Thankyou a lot for your inputs my friend! it helped a lot.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 10:50:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-sum-of-items-based-on-date-range-and-avaliable-stock/m-p/4367021#M173384</guid>
      <dc:creator>ClaudioF</dc:creator>
      <dc:date>2025-01-16T10:50:38Z</dc:date>
    </item>
  </channel>
</rss>

