<?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: Help me build a SUMIF funtion in powerBI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634051#M140577</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673289" data-lia-user-login="robdan" class="lia-mention lia-mention-user"&gt;robdan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for a calculated column, you may try&lt;/P&gt;
&lt;P&gt;Group Revenue =&lt;BR /&gt;IF (&lt;BR /&gt;SUMX (&lt;BR /&gt;CALCULATETABLE ( ALLEXCEPT ( 'Table', 'Table'[Group] ) ),&lt;BR /&gt;'Table'[Revenue]&lt;BR /&gt;) &amp;gt;= 0,&lt;BR /&gt;"N",&lt;BR /&gt;"Y"&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 18:45:35 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2024-01-11T18:45:35Z</dc:date>
    <item>
      <title>Help me build a SUMIF funtion in powerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634007#M140569</link>
      <description>&lt;P&gt;I would need to replicate, in a new column, a very simple SUMIF function. I've tried for hours, but i'm unable to complete this task in PowerBI.&lt;BR /&gt;&lt;BR /&gt;My database (DB_CORP) has, for each observation a single client name and 3 columns: "CUSTOMER" (the customer name); "GROUP" (the holding name of the customer, multiple customers can have the same GROUP name); "REVENUE"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Below a screenshot of the new column formula I need to replicate. If a Group's revenues are negative, put a "Y" for each customer part of that group, and viceversa.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;ve&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:15:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634007#M140569</guid>
      <dc:creator>robdan</dc:creator>
      <dc:date>2024-01-11T18:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help me build a SUMIF funtion in powerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634018#M140571</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673289" data-lia-user-login="robdan" class="lia-mention lia-mention-user"&gt;robdan&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;try below for column&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Column = 
var a = SUMX( FILTER('Table','Table'[group]=EARLIER('Table'[group])),'Table'[revenur])
return
IF(a&amp;lt;0,"y","n")&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;</description>
      <pubDate>Thu, 11 Jan 2024 18:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634018#M140571</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-11T18:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help me build a SUMIF funtion in powerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634025#M140572</link>
      <description>&lt;P&gt;who knew that asking on the internet would have saved me a couple of hours! thanks a lot it works very well, unfortunately i'm not familiar with DAX&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:35:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634025#M140572</guid>
      <dc:creator>robdan</dc:creator>
      <dc:date>2024-01-11T18:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help me build a SUMIF funtion in powerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634043#M140576</link>
      <description>&lt;P&gt;Hi, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673289" data-lia-user-login="robdan" class="lia-mention lia-mention-user"&gt;robdan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Asking on internet is easy&lt;/P&gt;&lt;P&gt;But it valueble when you shake your mind and still not get answer.&lt;/P&gt;&lt;P&gt;you learn new things and gain knowledge from your efforts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Enjoy your day &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:43:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634043#M140576</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-11T18:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help me build a SUMIF funtion in powerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634051#M140577</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673289" data-lia-user-login="robdan" class="lia-mention lia-mention-user"&gt;robdan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for a calculated column, you may try&lt;/P&gt;
&lt;P&gt;Group Revenue =&lt;BR /&gt;IF (&lt;BR /&gt;SUMX (&lt;BR /&gt;CALCULATETABLE ( ALLEXCEPT ( 'Table', 'Table'[Group] ) ),&lt;BR /&gt;'Table'[Revenue]&lt;BR /&gt;) &amp;gt;= 0,&lt;BR /&gt;"N",&lt;BR /&gt;"Y"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 18:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-me-build-a-SUMIF-funtion-in-powerBI/m-p/3634051#M140577</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-01-11T18:45:35Z</dc:date>
    </item>
  </channel>
</rss>

