<?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 the percentage weight of each customer in the customer portfolio to which it belongs in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846280#M150326</link>
    <description>&lt;P&gt;I need to think about how to best clarify this. A customer is served by two types of salesperson, type 1 and type 2.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It is unlikely that the share of a customer for a type 1 seller will be the same for a type 2 seller.&lt;/P&gt;&lt;P&gt;See the illustration below, sellers &lt;STRONG&gt;"Seller1"&lt;/STRONG&gt; and &lt;STRONG&gt;"Seller16"&lt;/STRONG&gt; have &lt;STRONG&gt;"Customer 15"&lt;/STRONG&gt; in common, but notice that this customer's share for "Seller1" is completely different from "Seller16". A customer may be important to one type of seller but not so important to another seller.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The customer portfolio is defined by the seller's code, as each seller is responsible for a group of customers. The observation is that there are two types of sellers (as shown in the screenshot below). This is why there will always be two sellers (or two wallets) for each customer, but the wallets of the type 1 seller are not the same as the type 2 seller, it just happens that there is a customer in common between them, as shown in the screenshot above.&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;</description>
    <pubDate>Wed, 17 Apr 2024 16:23:58 GMT</pubDate>
    <dc:creator>Rai_BI</dc:creator>
    <dc:date>2024-04-17T16:23:58Z</dc:date>
    <item>
      <title>Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841353#M150171</link>
      <description>&lt;P&gt;Hi friends, I need help calculating what percentage weight each client has within the client portfolio to which it belongs.&lt;/P&gt;&lt;P&gt;&lt;A href="https://lasdobrasilcombr-my.sharepoint.com/:u:/g/personal/rai_santos_las_app_br/EROnmuvO5MlKjj0BQgrK79cBj6s392WRnA2o_gFdAvzdKA?e=5iIN2G" target="_self" rel="nofollow noopener noreferrer"&gt;Download PBIX example here&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In Power BI I have a semantic data model composed as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Available tables:&lt;BR /&gt;A sales table "f_Sales" with the following fields: DATE, CUSTUMER ID, PRODUCT ID, QTY, SALES AMOUNT&lt;/P&gt;&lt;P&gt;A customer table "d_customer table" with the following fields: CUSTUMER ID, CUSTUMER NAME&lt;/P&gt;&lt;P&gt;A customer portfolio table "d_(portfolio)" with the following fields: SELLER ID, CUSTUMER ID&lt;/P&gt;&lt;P&gt;A seller table "d_Sellers" with the following fields: ID SELLER, NAME SELLER&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RELATIONSHIPS:&lt;/P&gt;&lt;P&gt;The "d_Sellers" table is related to the "d_(portfolio)" table through the "SELLER ID" field.&lt;BR /&gt;The "d_(portfolio)" table is related to the "d_customer table" table through the "CUSTUMER ID" field.&lt;BR /&gt;The "d_customer table" table is related to the "f_Sales" table through the "CUSTUMER ID" field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROBLEM TO SOLVE&lt;/P&gt;&lt;P&gt;Based on the tables, available fields and relationships presented above, I need to calculate the percentage weight that each customer has within the portfolio to which it belongs based on average sales.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;BR /&gt;Suppose that salesperson1 is responsible for four customers. I need to know what each customer's share is for this seller.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;SELLER 1&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;Customer 1 = 60%&lt;BR /&gt;Customer 2 = 15%&lt;BR /&gt;Customer 3 = 10%&lt;BR /&gt;Customer 4 = 5%&lt;BR /&gt;Total = 100%&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The DAX measurement I made below works, but it is slow and inefficient, as the visual does not load. I need some other solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;DIVIDE(
    [| Sales Avarege] ,
    
    CALCULATE(
		    [| Sales Avarege],
		    ALL('d_customer table'),
		    VALUES('d_(portfolio)'[ID Seller])
		)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;I also tried the following DAX measure below, it is fast and the visuals load quickly, but it only works if a filter is applied in the Seller slicer, otherwise the numbers are incorrect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;DIVIDE(
    [| Sales Avarege] ,
    
    CALCULATE(
		    [| Sales Avarege],		    
		    ALL('d_customer table'),ALL('d_(portfolio)'[Custumer ID])
		)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 12:36:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841353#M150171</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-16T12:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841712#M150182</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Weight% = 
SUMX ( 
    VALUES ('d_customer table'[Custumer ID] ), 
    DIVIDE(
        [| Sales Avarege] ,
        CALCULATE(
                [| Sales Avarege],
                ALL ( 'd_customer table' )
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 16 Apr 2024 13:37:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841712#M150182</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-16T13:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841815#M150189</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi&amp;nbsp;&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;&amp;nbsp;, thank you for your help.&lt;BR /&gt;&lt;BR /&gt;It's not working properly.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;It is necessary to filter a seller for the measure to make the correct calculation.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Filtering a seller&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;No filters on the seller&lt;BR /&gt;&lt;/STRONG&gt;Here I am filtering only customers from seller 1. See that the percentages are different from the previous screenshot.&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&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;</description>
      <pubDate>Tue, 16 Apr 2024 13:59:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3841815#M150189</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-16T13:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842150#M150196</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Not sure how did you get 0.15% at the total while the slicers are set to "All"! In the sample file you have shared with me the total is always 100% regardless of the slicer selection. I thought that was the intention.&lt;BR /&gt;However, in order to fix the percentage of the individual customers regardless of the what seleters are selected in the slicer you can try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Weight% = 
SUMX ( 
    VALUES ('d_customer table'[Custumer ID] ), 
    DIVIDE(
        [| Sales Avarege] ,
        CALCULATE (
            [| Sales Avarege],
            ALL ( 'd_customer table' ),
            ALL ( d_Sellers )
        )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 16 Apr 2024 16:18:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842150#M150196</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-16T16:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842217#M150199</link>
      <description>&lt;P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each salesperson is responsible for a customer group (portfolio). My intention is to calculate the share of each customer for their respective vendor &lt;STRONG&gt;regardless of whether there is a filter in the seller's or customer's slicer or the seller's name is applied to the visual&lt;/STRONG&gt;. This way I will be able to redistribute the seller's target to their respective customers based on their share (%). Or filter the most important customers, for example those with a share greater than 50%.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The measure you suggested (Weight% v2) does not correctly calculate the percentages for each customer see below.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Filtering seller1´s client&lt;/STRONG&gt;&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;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 16:55:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842217#M150199</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-16T16:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842667#M150221</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok, now I understand your requirement. However, some customers appear in multiple portfolios. For example in the following screenshot, in case both seller 14 and seller 16 are part of the slicer's selection, in order to calculate the percentage of customer 9256, over which total shall we divide? The total of the portfolio of seller 14 or seller 16? Or do you think this just a data error?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 21:31:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3842667#M150221</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-16T21:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3845481#M150300</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi&amp;nbsp;&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;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;There are two types of sellers, type 1 and type 2.&lt;/SPAN&gt; &lt;SPAN class=""&gt;Each customer is served by these two types, you can see these two types in the "d_Customer table".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Each customer is served by these two types, you can see these two types in the "d_Customer table".&lt;/P&gt;&lt;P&gt;The "d_(portfolio)" table is a bridge table between the "d_Customer table" and the "d_Sellers" table.&lt;/P&gt;&lt;P&gt;When you place the "Name Seller" field and the "Customer Name" field in the visual you will see the types of sellers, type 1 and type 2 for the same customer.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 11:59:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3845481#M150300</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-17T11:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3845987#M150313</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for clarifying this important&amp;nbsp;point. However, this does not answer my question. In other words how do you define a portfolio? And if a customer belong to more than one portfolio, then how shall we handle the calculation. I hope the example that I have presented in my previous reply explains my point. Please let me know if it doesn't.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 14:22:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3845987#M150313</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-17T14:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846280#M150326</link>
      <description>&lt;P&gt;I need to think about how to best clarify this. A customer is served by two types of salesperson, type 1 and type 2.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It is unlikely that the share of a customer for a type 1 seller will be the same for a type 2 seller.&lt;/P&gt;&lt;P&gt;See the illustration below, sellers &lt;STRONG&gt;"Seller1"&lt;/STRONG&gt; and &lt;STRONG&gt;"Seller16"&lt;/STRONG&gt; have &lt;STRONG&gt;"Customer 15"&lt;/STRONG&gt; in common, but notice that this customer's share for "Seller1" is completely different from "Seller16". A customer may be important to one type of seller but not so important to another seller.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The customer portfolio is defined by the seller's code, as each seller is responsible for a group of customers. The observation is that there are two types of sellers (as shown in the screenshot below). This is why there will always be two sellers (or two wallets) for each customer, but the wallets of the type 1 seller are not the same as the type 2 seller, it just happens that there is a customer in common between them, as shown in the screenshot above.&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;</description>
      <pubDate>Wed, 17 Apr 2024 16:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846280#M150326</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-17T16:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846379#M150330</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fair enough. But my question was based on the screenshot that you have provided earlier where type1 seller and type2 seller are not part of the visual's filter context&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;if you select one seller in the slicer then we get a percentage fro customer 15. If we select the other seller then we get a different percentage of customer 15. If we select both sellers then which percentage is to be presented?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now if you confirm that the calculation would be only caried out while either seller type1 or type2 would be part of the filter context then this is a whole different story.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 16:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846379#M150330</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-17T16:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846474#M150333</link>
      <description>&lt;P&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;&amp;nbsp;I understood your point. Now I fear it will be necessary to take two separate measurements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My intention is to multiply the customer's share by the respective salesperson's goal, so it will be necessary to make the measurement using the "IF" condition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example "IF" seller type 1 is filtered then do the calculation considering seller type 1. Otherwise "IF" seller type 2 is filtered then make the calculation considering seller type 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If neither type of seller is filtered, then I will have to add the two measurements together, so the customer will receive two goals relating to the two types of seller.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 18:29:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3846474#M150333</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-17T18:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3847839#M150371</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570958" data-lia-user-login="Rai_BI" class="lia-mention lia-mention-user"&gt;Rai_BI&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I hope this satisfies your requirement&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 06:18:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3847839#M150371</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-04-18T06:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate the percentage weight of each customer in the customer portfolio to which it belongs</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3859607#M150749</link>
      <description>&lt;P&gt;Thank you, unfortunately I haven't reached my goal yet. I'll have to think of some other way to do this.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 14:12:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-the-percentage-weight-of-each-customer-in-the-customer/m-p/3859607#M150749</guid>
      <dc:creator>Rai_BI</dc:creator>
      <dc:date>2024-04-22T14:12:54Z</dc:date>
    </item>
  </channel>
</rss>

