<?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: Soma da primeira Venda de cada vendedor por mês in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3770313#M147256</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704068" data-lia-user-login="JHPJ2001" class="lia-mention lia-mention-user"&gt;JHPJ2001&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column to mark the first sale.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column1 = 
    VAR a = CALCULATE(
        MIN('Tabel'[Date]),
        ALLEXCEPT('Tabel', 'Tabel'[Sales], 'Tabel'[Monthly Sales])
    )
    RETURN
    IF('Tabel'[Date] = a, 1, 0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The column returns 1 for the first sale and 0 for the others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to add up the values of these sales.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum Measure = 
    CALCULATE(
        SUM('Tabel'[Sales]),
        FILTER(
            'Tabel'.
            'Tabel'[Column1] = 1
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Drag and drop to the report page to display as you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other queries please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate if you could provide me with sample data, p&lt;SPAN&gt;lease remove any sensitive data in advance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Mar 2024 07:02:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-03-18T07:02:35Z</dc:date>
    <item>
      <title>Soma da primeira Venda de cada vendedor por mês</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3756770#M146567</link>
      <description>&lt;P&gt;ola , ficaria muito grato com a ajuda com asssunto abaixo :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;em uma tabela com diversas vendas , Preciso fazer a soma de todas as primeiras vendas dos vendedores ,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 03:26:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3756770#M146567</guid>
      <dc:creator>JHPJ2001</dc:creator>
      <dc:date>2024-03-12T03:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Soma da primeira Venda de cada vendedor por mês</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3758087#M146622</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 13:29:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3758087#M146622</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-03-12T13:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Soma da primeira Venda de cada vendedor por mês</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3770313#M147256</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704068" data-lia-user-login="JHPJ2001" class="lia-mention lia-mention-user"&gt;JHPJ2001&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column to mark the first sale.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column1 = 
    VAR a = CALCULATE(
        MIN('Tabel'[Date]),
        ALLEXCEPT('Tabel', 'Tabel'[Sales], 'Tabel'[Monthly Sales])
    )
    RETURN
    IF('Tabel'[Date] = a, 1, 0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The column returns 1 for the first sale and 0 for the others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure to add up the values of these sales.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum Measure = 
    CALCULATE(
        SUM('Tabel'[Sales]),
        FILTER(
            'Tabel'.
            'Tabel'[Column1] = 1
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Drag and drop to the report page to display as you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any other queries please feel free to contact me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate if you could provide me with sample data, p&lt;SPAN&gt;lease remove any sensitive data in advance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 07:02:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Soma-da-primeira-Venda-de-cada-vendedor-por-m%C3%AAs/m-p/3770313#M147256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-18T07:02:35Z</dc:date>
    </item>
  </channel>
</rss>

