<?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: Summarize value in a column with empty cells, filtered by other unique value from another column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574361#M137801</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533607" data-lia-user-login="LogiFons" class="lia-mention lia-mention-user"&gt;LogiFons&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Use this measure:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Points = 
SUMX(
    VALUES( Table18[Trip]),
    CALCULATE( MAX( Table18[Points] ) )
)
&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 08 Dec 2023 12:23:44 GMT</pubDate>
    <dc:creator>Fowmy</dc:creator>
    <dc:date>2023-12-08T12:23:44Z</dc:date>
    <item>
      <title>Summarize value in a column with empty cells, filtered by other unique value from another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574329#M137796</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am searching in severall articles a solution for my issue.&lt;/P&gt;&lt;P&gt;I would like to display in a card the sum of points by week.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Trip&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Points&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Week&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1001&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1001&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1002&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1002&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1005&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1005&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1010&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i need the unique Trip numbers and the summarize of the points.&lt;/P&gt;&lt;P&gt;In some cases a trip has no points and stays empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Trip&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Points&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Week&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1001&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1002&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1005&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1010&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i use the week filter in my dashboard, selecting week 1, the card must show me 5 Points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The best working measure for me was this one, but didn't give the correct solution.&lt;/P&gt;&lt;P&gt;Measure = SUMX(SUMMARIZE(TblPoints, TblPoints[Trip], TblPoints[Points]), TblPoints)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do i miss?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 11:49:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574329#M137796</guid>
      <dc:creator>LogiFons</dc:creator>
      <dc:date>2023-12-08T11:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize value in a column with empty cells, filtered by other unique value from another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574361#M137801</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533607" data-lia-user-login="LogiFons" class="lia-mention lia-mention-user"&gt;LogiFons&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Use this measure:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Points = 
SUMX(
    VALUES( Table18[Trip]),
    CALCULATE( MAX( Table18[Points] ) )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 08 Dec 2023 12:23:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574361#M137801</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2023-12-08T12:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize value in a column with empty cells, filtered by other unique value from another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574512#M137812</link>
      <description>&lt;P&gt;Hello Fowmy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This has the same solution as my formula.&lt;/P&gt;&lt;P&gt;So i think there is something in my data sheet wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wil find out first.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 13:45:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3574512#M137812</guid>
      <dc:creator>LogiFons</dc:creator>
      <dc:date>2023-12-08T13:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize value in a column with empty cells, filtered by other unique value from another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3580854#M138124</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="533607" data-lia-user-login="LogiFons" class="lia-mention lia-mention-user"&gt;LogiFons&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tested it with the data you gave me, tried the method you described, then selected week 1 in slicer, and got the result you wanted, I'm not sure if you did something else and got the wrong result.&amp;nbsp;Can you provide more information?&amp;nbsp;Please remove any sensitive data in advance.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Yuliax&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps, then please consider&amp;nbsp;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 01:54:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3580854#M138124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-13T01:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize value in a column with empty cells, filtered by other unique value from another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3581238#M138142</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had some wromhg values in my table.&lt;/P&gt;&lt;P&gt;Now i am usinhg the measure of Fowny and thid is working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you both of your support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 07:03:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-value-in-a-column-with-empty-cells-filtered-by-other/m-p/3581238#M138142</guid>
      <dc:creator>LogiFons</dc:creator>
      <dc:date>2023-12-13T07:03:32Z</dc:date>
    </item>
  </channel>
</rss>

