<?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 How to calculate all partially received goods by purchase order number in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834534#M184654</link>
    <description>&lt;P&gt;Hi my friends!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, how do I calculate all quantities received by purchase order number?&lt;/P&gt;&lt;P&gt;In the example below, I received item P/N 24431 on three different dates (10,000 per delivery) with Purchase Order 318431 and need to show this cumulative received in the "TotalReceived" column. In this case it should be displayed as 30,000 units from TotalReceived:&lt;/P&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;&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;OFilho&lt;/P&gt;</description>
    <pubDate>Wed, 24 Sep 2025 16:47:40 GMT</pubDate>
    <dc:creator>OsvaldoFagundes</dc:creator>
    <dc:date>2025-09-24T16:47:40Z</dc:date>
    <item>
      <title>How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834534#M184654</link>
      <description>&lt;P&gt;Hi my friends!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, how do I calculate all quantities received by purchase order number?&lt;/P&gt;&lt;P&gt;In the example below, I received item P/N 24431 on three different dates (10,000 per delivery) with Purchase Order 318431 and need to show this cumulative received in the "TotalReceived" column. In this case it should be displayed as 30,000 units from TotalReceived:&lt;/P&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;&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;OFilho&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 16:47:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834534#M184654</guid>
      <dc:creator>OsvaldoFagundes</dc:creator>
      <dc:date>2025-09-24T16:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834656#M184658</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;I believe that something like this should work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TotalReceived =
VAR _PONumber = MAX( 'PurchaseOrder'[PONumber] )
VAR _Return = CALCULATE( SUM( 'PurchaseOrder'[Received] ), FILTER( 'PurchaseOrder', [PONumber] = _PONumber ), ALL( 'PurchaseOrder' ) )
RETURN _Return&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 24 Sep 2025 20:52:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834656#M184658</guid>
      <dc:creator>GeraldGEmerick</dc:creator>
      <dc:date>2025-09-24T20:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834745#M184663</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PONumber Total = CALCULATE(
    SUM('Table'[Received]),
    ALLEXCEPT('Table','Table'[PONumber])
    )&lt;/LI-CODE&gt;&lt;P&gt;output will look like below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;You can experiment with allexcept to try different columns subtotals.&lt;/P&gt;&lt;P&gt;please mark it as resolved once confirmed.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 02:32:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4834745#M184663</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-09-25T02:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835400#M184683</link>
      <description>&lt;P&gt;Hi Gerald!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;I applied your measure, but it didn't work. For PO 318431 it would return 30,000:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 12:30:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835400#M184683</guid>
      <dc:creator>OsvaldoFagundes</dc:creator>
      <dc:date>2025-09-25T12:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835478#M184685</link>
      <description>&lt;P&gt;Hi Praful!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot my friend!&lt;/P&gt;&lt;P&gt;Unfortunately it doesn't work. I got 60,000 instead of 30,000&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;It appears that the value of the quantity received is doubling. Take a look at other PO:&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;</description>
      <pubDate>Thu, 25 Sep 2025 13:35:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835478#M184685</guid>
      <dc:creator>OsvaldoFagundes</dc:creator>
      <dc:date>2025-09-25T13:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835498#M184686</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;can you provide sample data so that i can try again?&lt;/P&gt;&lt;P&gt;based on screenshots it lookslike we&amp;nbsp; have to include PartNumber column also.&lt;/P&gt;&lt;P&gt;Please try below measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PONumber Total = CALCULATE(
    SUM('Table'[Received]),
    ALLEXCEPT('Table','Table'[PONumber],'Table'[PartNumber])
    )&lt;/LI-CODE&gt;&lt;P&gt;if this doesnt work,please send me sample data here or dm me directly&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;praful&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 14:00:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4835498#M184686</guid>
      <dc:creator>Praful_Potphode</dc:creator>
      <dc:date>2025-09-25T14:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4839014#M184791</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 12:17:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4839014#M184791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-09-30T12:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4842196#M184856</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Sat, 04 Oct 2025 13:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4842196#M184856</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-04T13:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4842379#M184859</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;You can solve this using a &lt;STRONG&gt;DAX measure&lt;/STRONG&gt; that calculates the cumulative quantity received per PONumber.&lt;BR /&gt;&lt;BR /&gt;Here's how:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TotalReceived =
CALCULATE(
    SUM(Sheet1[Received]),
    ALLEXCEPT(Sheet1, Sheet1[PONumber])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sums all Received values.&lt;/LI&gt;&lt;LI&gt;Groups the sum by PONumber, so each row with the same PO shows the same total.&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 05 Oct 2025 05:39:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4842379#M184859</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2025-10-05T05:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate all partially received goods by purchase order number</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4844014#M184905</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1355345" data-lia-user-login="OsvaldoFagundes" class="lia-mention lia-mention-user"&gt;OsvaldoFagundes&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the suggestions &amp;nbsp;provided by the community members for the issue worked. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 05:02:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-all-partially-received-goods-by-purchase-order/m-p/4844014#M184905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-07T05:02:49Z</dc:date>
    </item>
  </channel>
</rss>

