<?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: Percentage betwen two tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406810#M174962</link>
    <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683724" data-lia-user-login="dofrancis3" class="lia-mention lia-mention-user"&gt;dofrancis3&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;you can use this formula&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;percentage = 
var table_cum = SELECTEDVALUE(Show[**bleep**])
var mesure_cum = [**bleep** show]
RETURN
IF(NOT(ISBLANK(table_cum)) &amp;amp;&amp;amp; NOT(ISBLANK(mesure_cum)),DIVIDE(table_cum,mesure_cum))&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;helps&lt;/EM&gt;, then please give us Kudos and consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as a solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Wed, 12 Feb 2025 10:31:18 GMT</pubDate>
    <dc:creator>vivek31</dc:creator>
    <dc:date>2025-02-12T10:31:18Z</dc:date>
    <item>
      <title>Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406692#M174954</link>
      <description>&lt;P&gt;Dear colleagues,&lt;/P&gt;&lt;P&gt;Please i need your help:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables (T1 and T2)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In the T1 I have a cumulative &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Column&lt;/STRONG&gt;&lt;/FONT&gt; named “My_Cumul”&lt;/LI&gt;&lt;LI&gt;In the T2 I have a &lt;FONT face="arial black,avant garde" color="#FF0000"&gt;&lt;STRONG&gt;Mesure&lt;/STRONG&gt;&lt;/FONT&gt; named “Pop_cumul”&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So, I would like to calculate the percentage using this formula: “My_Cumul” DIVISE “Pop_cumul”&lt;/P&gt;&lt;P&gt;Please could you help me with the DAX Mesure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 09:42:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406692#M174954</guid>
      <dc:creator>dofrancis3</dc:creator>
      <dc:date>2025-02-12T09:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406741#M174958</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683724" data-lia-user-login="dofrancis3" class="lia-mention lia-mention-user"&gt;dofrancis3&lt;/a&gt;&amp;nbsp;Try using&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Percentage = &lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUM(T1[My_Cumul]),&lt;BR /&gt;SUM(T2[Pop_cumul]),&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 10:03:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406741#M174958</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-02-12T10:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406791#M174961</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;"&lt;SPAN&gt;Pop_cumul" is a &lt;STRONG&gt;mesure&lt;/STRONG&gt;&amp;nbsp;of the T2 it's not a Column.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;The solution you suggested is when there are two columns, but in this case I have Une collone et une mesure.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Please advise.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 10:29:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406791#M174961</guid>
      <dc:creator>dofrancis3</dc:creator>
      <dc:date>2025-02-12T10:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406810#M174962</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683724" data-lia-user-login="dofrancis3" class="lia-mention lia-mention-user"&gt;dofrancis3&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;you can use this formula&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;percentage = 
var table_cum = SELECTEDVALUE(Show[**bleep**])
var mesure_cum = [**bleep** show]
RETURN
IF(NOT(ISBLANK(table_cum)) &amp;amp;&amp;amp; NOT(ISBLANK(mesure_cum)),DIVIDE(table_cum,mesure_cum))&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;helps&lt;/EM&gt;, then please give us Kudos and consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as a solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 10:31:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406810#M174962</guid>
      <dc:creator>vivek31</dc:creator>
      <dc:date>2025-02-12T10:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406831#M174964</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="683724" data-lia-user-login="dofrancis3" class="lia-mention lia-mention-user"&gt;dofrancis3&lt;/a&gt;&amp;nbsp;, Use it direct than&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DIVIDE(&lt;BR /&gt;SUM(T1[My_Cumul]),&lt;BR /&gt;[Pop_cumul],&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you still face issue share PBIX or sample data&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 10:40:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406831#M174964</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-02-12T10:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage betwen two tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406862#M174969</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="692058" data-lia-user-login="vivek31" class="lia-mention lia-mention-user"&gt;vivek31&lt;/a&gt;&amp;nbsp;thank you so much for your support&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 11:02:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-betwen-two-tables/m-p/4406862#M174969</guid>
      <dc:creator>dofrancis3</dc:creator>
      <dc:date>2025-02-12T11:02:14Z</dc:date>
    </item>
  </channel>
</rss>

