<?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: How to Divide byone table column divide by column total and multiply with another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3723525#M145004</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="632076" data-lia-user-login="Manigandan" class="lia-mention lia-mention-user"&gt;Manigandan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Please follow these steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Right-click &lt;STRONG&gt;Table&lt;/STRONG&gt; , select &lt;STRONG&gt;New column &lt;/STRONG&gt;&amp;nbsp;and input them with texts as pictures shown.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Caroline Mei&lt;/P&gt;&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Mon, 26 Feb 2024 10:00:40 GMT</pubDate>
    <dc:creator>v-yanimei-msft</dc:creator>
    <dc:date>2024-02-26T10:00:40Z</dc:date>
    <item>
      <title>How to Divide byone table column divide by column total and multiply with another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3721837#M144939</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am trying to create some measures in power bi, where I want to divide each score by the sum and multiplay with another corrected sum amount&amp;nbsp; for each group&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Table 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Corrected in excel formula is :=ROUND(C86/$C$98*$C$100,0) in B105 column formula in output table&lt;/P&gt;&lt;P&gt;My Output is&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I need the above output Please share me anyone know that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Feb 2024 11:52:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3721837#M144939</guid>
      <dc:creator>Manigandan</dc:creator>
      <dc:date>2024-02-25T11:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Divide byone table column divide by column total and multiply with another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3721998#M144950</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="632076" data-lia-user-login="Manigandan" class="lia-mention lia-mention-user"&gt;Manigandan&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CorrectedSum = 
VAR __AllSumDivide = CALCULATE(SUM(Table[FirstColumn]),ALL(Table))
VAR __AllSumMultiply = CALCULATE(SUM(Table[SecondColumn]),ALL(Table))

RETURN SUMX(Table,DIVIDE(Table[CColumn],__AllSumDivide)*__AllSumMultiply)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Feb 2024 15:29:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3721998#M144950</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-02-25T15:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to Divide byone table column divide by column total and multiply with another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3723525#M145004</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="632076" data-lia-user-login="Manigandan" class="lia-mention lia-mention-user"&gt;Manigandan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Please follow these steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Right-click &lt;STRONG&gt;Table&lt;/STRONG&gt; , select &lt;STRONG&gt;New column &lt;/STRONG&gt;&amp;nbsp;and input them with texts as pictures shown.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Caroline Mei&lt;/P&gt;&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 10:00:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Divide-byone-table-column-divide-by-column-total-and/m-p/3723525#M145004</guid>
      <dc:creator>v-yanimei-msft</dc:creator>
      <dc:date>2024-02-26T10:00:40Z</dc:date>
    </item>
  </channel>
</rss>

