<?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: Dividir entre dos objetos visuales in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242247#M167949</link>
    <description>&lt;P&gt;If you don't already have these as measures, I'd create them.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Preventas Mes = SUM(Table[Preventas Mes])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Altas = SUM(Table[Altas])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can create the percentage&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Percentage = DIVIDE([Altas], [Preventas Mes], 0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2024 02:20:22 GMT</pubDate>
    <dc:creator>aduguid</dc:creator>
    <dc:date>2024-10-15T02:20:22Z</dc:date>
    <item>
      <title>Dividir entre dos objetos visuales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242074#M167940</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hola, tengo estos dos objetos visuales y me gustaría crear un tercer objeto que muestre el resultado de la división entre altas/preventas mes en valor porcentual. Agradezco su ayuda por favor&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 23:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242074#M167940</guid>
      <dc:creator>Dajakda</dc:creator>
      <dc:date>2024-10-14T23:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dividir entre dos objetos visuales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242247#M167949</link>
      <description>&lt;P&gt;If you don't already have these as measures, I'd create them.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Preventas Mes = SUM(Table[Preventas Mes])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Altas = SUM(Table[Altas])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can create the percentage&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Percentage = DIVIDE([Altas], [Preventas Mes], 0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 02:20:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242247#M167949</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-10-15T02:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dividir entre dos objetos visuales</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242752#M167973</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="728629" data-lia-user-login="Dajakda" class="lia-mention lia-mention-user"&gt;Dajakda&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you can try formula like below to create measure:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;sum_s =
CALCULATE (
    SUM ( TableS[PreSalesAmount] ),
    FILTER ( 'TableS', TableS[Month] = [Sel] )
)
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;sum_p =
CALCULATE (
    SUM ( TableP[PreSalesAmount] ),
    FILTER ( 'TableP', TableP[Month] = [Sel] )
)
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;result = DIVIDE([sum_s],[sum_p])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&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;Best Regards,&lt;BR /&gt;Adamk Kong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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>Tue, 15 Oct 2024 08:32:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dividir-entre-dos-objetos-visuales/m-p/4242752#M167973</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-15T08:32:53Z</dc:date>
    </item>
  </channel>
</rss>

