<?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: Formula dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4244734#M168056</link>
    <description>&lt;P&gt;Hola Funciono!! Muchas gracias!!&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2024 11:41:16 GMT</pubDate>
    <dc:creator>ManuPulgar</dc:creator>
    <dc:date>2024-10-16T11:41:16Z</dc:date>
    <item>
      <title>Formula dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240261#M167855</link>
      <description>&lt;P&gt;Estimados necesito ayuda con alguna formula dax que me sume solo los valores una sola vez.&lt;/P&gt;&lt;P&gt;La tabla está de la siguiente manera:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vendedor.&amp;nbsp; &amp;nbsp; &amp;nbsp; Clientes&lt;/P&gt;&lt;P&gt;José Pérez&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 86&lt;/P&gt;&lt;P&gt;José Pérez.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;86&lt;/P&gt;&lt;P&gt;Pedro Marin.&amp;nbsp; &amp;nbsp; 74&lt;/P&gt;&lt;P&gt;Pedro Marin.&amp;nbsp; &amp;nbsp; 74&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Necesito una formula dax que me sume solo una sola vez los valores de cada vendedor y no la totalidad de veces que aparece en la columna vendedor.&lt;/P&gt;&lt;P&gt;Para el caso me serviría que solo sumar 86 de José y 74 de Pedro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gracias&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 00:34:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240261#M167855</guid>
      <dc:creator>ManuPulgar</dc:creator>
      <dc:date>2024-10-14T00:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Formula dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240489#M167864</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="824524" data-lia-user-login="ManuPulgar" class="lia-mention lia-mention-user"&gt;ManuPulgar&lt;/a&gt;&amp;nbsp; Try below code for summing up distinct value by Vendedor:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DistinctSum = SUMX(
    SUMMARIZE(
        'Table',
        'Table'[Vendedor.],
        "DistinctClientes",
        DISTINCT('Table'[Clientes])
    ),
    [DistinctClientes]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!!&lt;/P&gt;&lt;P&gt;If this solved your problem, please accept it as a solution!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;BR /&gt;Shahariar Hafiz&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 03:30:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240489#M167864</guid>
      <dc:creator>shafiz_p</dc:creator>
      <dc:date>2024-10-14T03:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Formula dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240509#M167865</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&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;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;expected result measure: =
VAR _t =
    SUMMARIZE (
        Sales,
        Sales[Vendor],
        Sales[Sales]
    )
RETURN
    SUMX (
        _t,
        Sales[Sales]
    )
&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 14 Oct 2024 03:54:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4240509#M167865</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-10-14T03:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Formula dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4244731#M168054</link>
      <description>&lt;P&gt;Funciono!! muchas gracias por tomarse el tiempo en ayudarme.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 11:40:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4244731#M168054</guid>
      <dc:creator>ManuPulgar</dc:creator>
      <dc:date>2024-10-16T11:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Formula dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4244734#M168056</link>
      <description>&lt;P&gt;Hola Funciono!! Muchas gracias!!&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 11:41:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Formula-dax/m-p/4244734#M168056</guid>
      <dc:creator>ManuPulgar</dc:creator>
      <dc:date>2024-10-16T11:41:16Z</dc:date>
    </item>
  </channel>
</rss>

