<?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: Preparing a pricelist - products and assemblies in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143001#M187569</link>
    <description>&lt;P&gt;For the Assembly types you need to move the filter from Assembly Configurations to the basic product pricelist, you can use TREATAS to do that.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_price =
SUMX (
    'dim Products and Assemblies',
    SWITCH (
        'dim Products and Assemblies'[Type],
        "Product", [_basicProductPrice],
        "Assembly",
            CALCULATE (
                [_basicProductPrice],
                TREATAS (
                    CALCULATETABLE ( VALUES ( 'Assembly configurations'[Product cat no] ) ),
                    'Basic Product Pricelist'[Product cat no]
                )
            )
    )
)
&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 02 Apr 2026 11:04:28 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2026-04-02T11:04:28Z</dc:date>
    <item>
      <title>Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5142977#M187568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have a problem as I want to prepare a simple pricelist but the problem is complex for me which is driving me mad a bit &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have Tables with data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;with prices for basic products. whcih looks like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I sell also assemblies so I have more tables:&lt;/P&gt;&lt;P&gt;2)&amp;nbsp;&lt;STRONG&gt;Tassemblies&amp;nbsp;&lt;/STRONG&gt;which has the catalog numbers and names of each assembly:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3)&amp;nbsp;&lt;STRONG&gt;Assembly configurations&amp;nbsp;&lt;/STRONG&gt;which have the information which basic product in which amount is part of an assembly:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the&amp;nbsp;&lt;STRONG&gt;Basic product pricelist &lt;/STRONG&gt;and&lt;STRONG&gt; TAssemblies&amp;nbsp;&lt;/STRONG&gt;I prepare one&amp;nbsp;&lt;STRONG&gt;dim Product and Assembly&amp;nbsp;&lt;/STRONG&gt;table:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;in which I have all basic products, all assemblies (names and catalog numbers) and information if it is an assembly or product:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I remove the&amp;nbsp;&lt;STRONG&gt;TAssemblies&amp;nbsp;&lt;/STRONG&gt;from the data model as I (suppose) no longer need it.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Now the relationships:&lt;/P&gt;&lt;P&gt;All are one way from dim to other tables:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have 2 relationships with&amp;nbsp;&lt;STRONG&gt;Assembly configurations&amp;nbsp;&lt;/STRONG&gt;because in future I (suppose) will need it for price calculations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I want to prepare the pricelist.&lt;/P&gt;&lt;P&gt;For Type = Product it is simple as I have a relationship active:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_basicProductPrice =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Basic product pricelist'&lt;/SPAN&gt;&lt;SPAN&gt;[New Price]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;and Now I want to have it in pricelist measure that calculates the price of basic products and assemblies based on type = Product or type = Assembly:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_price =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SWITCH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'dim Products and Assemblies'&lt;/SPAN&gt;&lt;SPAN&gt;[Type]&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;"Product"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[_basicProductPrice]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'dim Products and Assemblies'&lt;/SPAN&gt;&lt;SPAN&gt;[Type]&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;"Assembly"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but of course the price of the assembly is not 1 - I just put it there because I can't get this price. But in table visual it looks like this:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;How can I now calculate the price of each assembly?&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g. for A3:&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I need to get the prices of all these 3 products in specified amounts. I can't even display the name of the product - I think I not only need DAX but I miss the relationship as well maybe?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I do it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You very much for help in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You for Your help.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 10:17:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5142977#M187568</guid>
      <dc:creator>Fistachpl</dc:creator>
      <dc:date>2026-04-02T10:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143001#M187569</link>
      <description>&lt;P&gt;For the Assembly types you need to move the filter from Assembly Configurations to the basic product pricelist, you can use TREATAS to do that.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_price =
SUMX (
    'dim Products and Assemblies',
    SWITCH (
        'dim Products and Assemblies'[Type],
        "Product", [_basicProductPrice],
        "Assembly",
            CALCULATE (
                [_basicProductPrice],
                TREATAS (
                    CALCULATETABLE ( VALUES ( 'Assembly configurations'[Product cat no] ) ),
                    'Basic Product Pricelist'[Product cat no]
                )
            )
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 02 Apr 2026 11:04:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143001#M187569</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2026-04-02T11:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143037#M187570</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;thanks for the help but it doesn't work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I forgot to include the link to the file:&amp;nbsp;&lt;!--  StartFragment   --&gt; &lt;A href="https://1drv.ms/u/c/97de54f7273c5568/IQA7fEomAW92RYqvjyO1ethnAafBphBM13tHtorFBd6JxJA?e=IVAuWg" target="_blank" rel="noopener"&gt;Basic pricelist.pbix&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 12:08:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143037#M187570</guid>
      <dc:creator>Fistachpl</dc:creator>
      <dc:date>2026-04-02T12:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143057#M187572</link>
      <description>&lt;P&gt;Bit more complicated as you need to incorporate amount too.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_price = SUMX(
    'dim Products and Assemblies',
    SWITCH(
        'dim Products and Assemblies'[Type],
        "Product", [_pprice],
        "Assembly", 
        VAR _BaseTable = CALCULATETABLE(
            SELECTCOLUMNS(
                'Assembly configurations',
                'Assembly configurations'[Amount],
                "@price",
                LOOKUPVALUE(
                    'Basic product pricelist'[New Price],
                    'Basic product pricelist'[Product cat No],
                    'Assembly configurations'[Product cat no]
                )
            )
        )
        VAR Result = SUMX( _BaseTable, [@price] * 'Assembly configurations'[Amount] )
        RETURN Result
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 02 Apr 2026 12:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143057#M187572</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2026-04-02T12:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143812#M187610</link>
      <description>&lt;P&gt;This is a great example of where the challenge is less about the formula itself and more about how the model is structured.&lt;/P&gt;&lt;P&gt;For assemblies, what you’re really trying to do is iterate through each component in the assembly, multiply the quantity by the product price, and then sum everything up.&lt;/P&gt;&lt;P&gt;In DAX terms, that usually means using something like SUMX over your assembly configuration table, where you can pull in the related product price for each component.&lt;/P&gt;&lt;P&gt;Conceptually, it would look something like:&lt;/P&gt;&lt;P&gt;Loop through each row in the assembly configuration&lt;BR /&gt;For each component:&lt;BR /&gt;get the quantity&lt;BR /&gt;get the related product price&lt;BR /&gt;Multiply and sum&lt;/P&gt;&lt;P&gt;So your assembly part of the measure would follow that pattern:&lt;/P&gt;&lt;P&gt;Assembly Price =&lt;BR /&gt;SUMX(&lt;BR /&gt;'Assembly configurations',&lt;BR /&gt;'Assembly configurations'[Quantity] *&lt;BR /&gt;RELATED('Basic product pricelist'[New Price])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;Then your SWITCH logic can call this when Type = "Assembly".&lt;/P&gt;&lt;P&gt;If this isn’t returning results yet, it’s usually a sign that the relationship path between:&lt;/P&gt;&lt;P&gt;assembly → configuration → product → price&lt;/P&gt;&lt;P&gt;isn’t fully connected or active in the model.&lt;/P&gt;&lt;P&gt;One thing I’d double check is whether your model allows the filter from the selected assembly to correctly flow into the configuration table and then back to the product price. That relationship flow is what makes the calculation work.&lt;/P&gt;&lt;P&gt;I’ve run into similar setups where the DAX looked right, but the real issue was the relationship direction or missing link in the chain.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Apr 2026 17:05:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5143812#M187610</guid>
      <dc:creator>donbuser</dc:creator>
      <dc:date>2026-04-05T17:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144002#M187622</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="547299" data-lia-user-login="Fistachpl" class="lia-mention lia-mention-user"&gt;Fistachpl&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for posting your query in the Microsoft Fabric Community Forum, and thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1570707" data-lia-user-login="donbuser" class="lia-mention lia-mention-user"&gt;donbuser&lt;/a&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; for sharing valuable insights.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please confirm if your query has been resolved by the provided solutions? This would be helpful for other members who may encounter similar issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for being part of the Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 07:00:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144002#M187622</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2026-04-06T07:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144030#M187626</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="547299" data-lia-user-login="Fistachpl" class="lia-mention lia-mention-user"&gt;Fistachpl&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;can you try out this DAX&lt;/P&gt;&lt;PRE&gt;_price = 
// 1. Wrap the entire calculation in SUMX to ensure the Grand Total row calculates correctly
SUMX(
    VALUES('dim Products and Assemblies'[Catalogue No]), 
    
    // 2. Identify if the current row is a Product or an Assembly
    VAR _CurrentType = CALCULATE( MAX('dim Products and Assemblies'[Type]) )
    
    // 3. Calculation for Basic Products (Uses your existing measure)
    VAR _ProductPrice = [_basicProductPrice]
    
    // 4. Calculation for Assemblies
    VAR _AssemblyPrice = 
        SUMX(
            'Assembly configurations', 
            
            // Multiply the amount by the looked-up price of the component
            'Assembly configurations'[Amount] * 
            LOOKUPVALUE(
                'Basic product pricelist'[New Price],
                'Basic product pricelist'[Product cat No], 'Assembly configurations'[Product cat no]
            )
        )
        
    // 5. Output the correct calculation based on the Type
    RETURN
        SWITCH(
            TRUE(),
            _CurrentType = "Product", _ProductPrice,
            _CurrentType = "Assembly", _AssemblyPrice
        )
)&lt;/PRE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 07:24:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144030#M187626</guid>
      <dc:creator>mizan2390</dc:creator>
      <dc:date>2026-04-06T07:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144236#M187628</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="547299" data-lia-user-login="Fistachpl" class="lia-mention lia-mention-user"&gt;Fistachpl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_price :=
VAR _type =
    SELECTEDVALUE('dim Products and Assemblies'[Type])

RETURN
SWITCH(
    TRUE(),

    -- Basic product
    _type = "Product",
        MAX('Basic product pricelist'[New Price]),

    -- Assembly
    _type = "Assembly",
        SUMX(
            'Assembly configurations',
            'Assembly configurations'[Quantity] *
            CALCULATE(
                MAX('Basic product pricelist'[New Price]),
                TREATAS(
                    VALUES('Assembly configurations'[Component Product]),
                    'Basic product pricelist'[Product]
                )
            )
        )
)
&lt;/LI-CODE&gt;
&lt;P&gt;try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 15:58:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5144236#M187628</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2026-04-06T15:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Preparing a pricelist - products and assemblies</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5145861#M187681</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="547299" data-lia-user-login="Fistachpl" class="lia-mention lia-mention-user"&gt;Fistachpl&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We hope you're doing well. Could you please confirm whether your issue has been resolved or if you're still facing challenges? Your update will be valuable to the community and may assist others with similar concerns.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2026 12:27:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Preparing-a-pricelist-products-and-assemblies/m-p/5145861#M187681</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2026-04-09T12:27:19Z</dc:date>
    </item>
  </channel>
</rss>

