<?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: Measure for production Bom table to calculate the requirment sub-items for multipack items in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3306609#M123504</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;share file thx&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jun 2023 16:00:41 GMT</pubDate>
    <dc:creator>some_bih</dc:creator>
    <dc:date>2023-06-28T16:00:41Z</dc:date>
    <item>
      <title>Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3306181#M123482</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi @all,&lt;BR /&gt;i can´t solve my problem. Maybe somone can help?&lt;BR /&gt;Given Dataset:&lt;BR /&gt;Table: stock_v2 with columns: [quantity] [item number OF/UV] Table: Item with columns: No_ Base Unit of Measure Table: Production BOM Line with columns: Line No_ No_ Quantity No_ item Table: Sales Line with columns: Document No_ No_ Outstanding Qty_ (Base) Requested Delivery Date Table: Date with columns: Date Day Month Year IsoKW #&lt;/P&gt;&lt;P&gt;Active relationships: From Production BOM Line [No_item] to Item [No_]: many to one From Sales Line [No_] to Item [No_]: many to one From stock_v2 [item number OF/UV] to Item [No_]: many to one From Sales Line [Requested Delivery Date] to Date [Date]: many to one&lt;/P&gt;&lt;P&gt;Inactive relationships: From Production BOM Line [No_] to Item [No_]: many to one&lt;/P&gt;&lt;P&gt;Multipack items are defined in the Item table as follows: if Base Unit of Measure &amp;lt;&amp;gt; "STK" , then the item is a multipack item. The Production BOM Line contains information about which individual items in column [No_] belong to which multipack item in column [No_item]. The [Quantity] column indicates the number of individual items in the multipack item. An individual item can exist in multiple different multipack items.&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;This measure calculates the demand for multipacks from the Sales Line table:&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Target demand MP =
VAR orderedQuantity =
CALCULATE(
SUM('Sales Line'[Outstanding Qty (Base)]),
LEFT('Sales Line'[Document No_], 2) = "AU",
FILTER('Production BOM Line', 'Production BOM Line'[No_ item] = SELECTEDVALUE('Item'[No_]))
)

VAR _FinishedGoodsStockMP =
CALCULATE(
SUM(stock_v2[quantity]),
FILTER(RELATEDTABLE('Item'), 'Item'[Base Unit of Measure] &amp;lt;&amp;gt; "STK")
)

RETURN
IF(
(_orderedQuantity - _FinishedGoodsStockMP) &amp;lt;= 0,
BLANK(),
_orderedQuantity - _FinishedGoodsStockMP
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The result of this measure needs to be multiplied by the Quantity column of the sub-items.&lt;BR /&gt;Example BOM Line Table&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Line No_&lt;/TD&gt;&lt;TD&gt;No_&lt;/TD&gt;&lt;TD&gt;Quantity&lt;/TD&gt;&lt;TD&gt;No_ item&lt;/TD&gt;&lt;TD&gt;requirement quantity No_item&lt;/TD&gt;&lt;TD&gt;Requirement quantity sub-item for MP&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20000&lt;/TD&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;8940&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;30000&lt;/TD&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;8940&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;40000&lt;/TD&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;8940&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10000&lt;/TD&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;8940&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Example Item Table&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;No_&lt;/TD&gt;&lt;TD&gt;Base Unit of Measure&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;MP&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Example Sales Line Table&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Document No_&lt;/TD&gt;&lt;TD&gt;No_&lt;/TD&gt;&lt;TD&gt;Outstanding Qty_ (Base)&lt;/TD&gt;&lt;TD&gt;Requested Delivery Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22009&lt;/TD&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;13686&lt;/TD&gt;&lt;TD&gt;01.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22009&lt;/TD&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;10710&lt;/TD&gt;&lt;TD&gt;01.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22009&lt;/TD&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;11700&lt;/TD&gt;&lt;TD&gt;01.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22009&lt;/TD&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;6912&lt;/TD&gt;&lt;TD&gt;01.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22009&lt;/TD&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;9990&lt;/TD&gt;&lt;TD&gt;01.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22010&lt;/TD&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;5850&lt;/TD&gt;&lt;TD&gt;10.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22010&lt;/TD&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;3456&lt;/TD&gt;&lt;TD&gt;10.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22010&lt;/TD&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;3456&lt;/TD&gt;&lt;TD&gt;10.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AU-22010&lt;/TD&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;10.10.2023 00:00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example Stock Table&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;no_&lt;/TD&gt;&lt;TD&gt;quantity&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6504&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The result should looks like below:&lt;/P&gt;&lt;P&gt;Filter: Item (Base Unit of Measure)= STK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;No_&lt;/TD&gt;&lt;TD&gt;Base Unit of Measure&lt;/TD&gt;&lt;TD&gt;Order quantity item&lt;/TD&gt;&lt;TD&gt;Order quantity sub-item for MP&lt;/TD&gt;&lt;TD&gt;Stock&lt;/TD&gt;&lt;TD&gt;requirement quantity item&lt;/TD&gt;&lt;TD&gt;Requirement quantity sub-item for MP&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6500&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;TD&gt;19536&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;TD&gt;18486&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6505&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;TD&gt;14166&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;TD&gt;13116&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6501&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;TD&gt;15156&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;TD&gt;14106&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6400&lt;/TD&gt;&lt;TD&gt;STK&lt;/TD&gt;&lt;TD&gt;6932&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;TD&gt;1050&lt;/TD&gt;&lt;TD&gt;5882&lt;/TD&gt;&lt;TD&gt;26820&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 14:18:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3306181#M123482</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-06-28T14:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3306609#M123504</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;share file thx&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 16:00:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3306609#M123504</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-06-28T16:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307497#M123545</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;i will make an example file. Where can I upload the file?&lt;BR /&gt;&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;"I'm sorry for asking, but last time you were able to solve my problem very well... Do you have any ideas?"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 06:13:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307497#M123545</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-06-29T06:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307765#M123552</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;if you have office 365, just send shared link&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 08:10:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307765#M123552</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-06-29T08:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307881#M123562</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;thx. Follow the link to download my power bi example file.&lt;BR /&gt;&lt;A href="https://wetransfer.com/downloads/20daad434028a810bc1893f9064198ef20230629085907/63595daa9f5c1a3f761e76094fefb94a20230629085926/707701?trk=TRN_TDL_01&amp;amp;utm_campaign=TRN_TDL_01&amp;amp;utm_medium=email&amp;amp;utm_source=sendgrid" target="_blank"&gt;&lt;SPAN&gt;https://wetransfer.com/downloads/20daad434028a810bc1893f9064198ef20230629085907/63595daa9f5c1a3f761e76094fefb94a20230629085926/707701&lt;/SPAN&gt; &lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 09:00:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3307881#M123562</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-06-29T09:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3308095#M123576</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;Intermediate table is wanted output? If yes, from which table and columns values should come from?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two columns in this table have the same values:&amp;nbsp;Order quantity sub-item for MP and&amp;nbsp;Requirement quantity sub-item for MP, is it by luck or ...&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 11:11:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3308095#M123576</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-06-29T11:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3308133#M123579</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;i'm sorry for the misunderstanding, you can delete the intermediate table. To cover the demand for multipacks, you can obtain the sums of individual items through the following calculation:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The result from "Target demand MP" should then be indicated as an additional column in the table visual. In the original file, the calculation was solved using calculated columns, where all the required quantities were summed up as calculated columns in the Item table. However, I need a dynamic solution for demand calculation.&lt;BR /&gt;This is my calculated column in the&amp;nbsp; item table from original file. "I can't replicate the issue in the example file because it's resulting in a circular failure, and I'm unsure of the cause.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My wanted output is this table visual: I need to see in the table visual the individual item quantities required for single-variety items (Column Target deman item) and the individual item quantities required for multipacks.(Column MP)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 09:25:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3308133#M123579</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-07-04T09:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3311071#M123785</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;I was thinking about your model, as much as I could understand. Following is concerning your circular reference: it could be that some connection is wrong. As I understand, given that your table are tiny, which is good, you should remodel your model using Power query transofrmation if possilbe, and after that make connection, check results. Example, Item table and Stock table are just few column. I aslo understand that there could be "need" to see data on Document level so you have table Sales line or something. I am just saying, build your model step by step, and use as much model as you need, not single one. Hope this help&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jul 2023 10:36:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3311071#M123785</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-07-01T10:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312548#M123889</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt; , thanks for your response.&lt;BR /&gt;I need a report that shows the required quantities of an item as individual units and the required quantities as part of a multipack (where a multipack consists of multiple different individual items). I have already solved this demand calculation using calculated columns in my original file, but unfortunately, I cannot share the data as it is highly sensitive. However, the current report no longer meets the requirements of our planning, so I would like to represent each calculation using dynamic measures. For example, to filter the required quantities by calendar weeks.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 11:38:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312548#M123889</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-07-03T11:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312574#M123892</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="544625" data-lia-user-login="FredBus" class="lia-mention lia-mention-user"&gt;FredBus&lt;/a&gt;&amp;nbsp;Honestly I do not fully understand your model so I am not sure how to contribute as calculation logic is unknown for me. Concerning week view, the best would be to implement Date / Calendar table, if you do not have it already.&lt;/P&gt;&lt;P&gt;Week number is usually obtained using funcion. Hope this help&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/weeknum-function-dax" target="_self"&gt;https://learn.microsoft.com/en-us/dax/weeknum-function-dax&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 11:56:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312574#M123892</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-07-03T11:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Measure for production Bom table to calculate the requirment sub-items for multipack items</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312684#M123898</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;okay... i will resolve the circular issue and update the example file with multiple examples.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 12:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-for-production-Bom-table-to-calculate-the-requirment-sub/m-p/3312684#M123898</guid>
      <dc:creator>FredBus</dc:creator>
      <dc:date>2023-07-03T12:59:46Z</dc:date>
    </item>
  </channel>
</rss>

