<?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 function in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286039#M56076</link>
    <description>&lt;P&gt;Hello Amit,&lt;/P&gt;&lt;P&gt;am getting incorrect total in Table may I know how to fix this issue. Should I use Summarize in measures or any other way to fix it?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jan 2022 07:19:21 GMT</pubDate>
    <dc:creator>Chandrashekar</dc:creator>
    <dc:date>2022-01-17T07:19:21Z</dc:date>
    <item>
      <title>Summarize function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2285941#M56069</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to add summarize function to below measures as am using this in Table(am not getting correct total in Table)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;BR /&gt;&lt;BR /&gt;COUNTROWS(Table1), (FILTER( All(Table1), Table1[Priority] = 1 &amp;amp;&amp;amp; Table1[Date] =selecteddate &amp;amp;&amp;amp; Table1 [Que]=selectedque)),&lt;BR /&gt;TREATAS ( CR_tbl, Table1[comp], Table1[Reg] )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 06:16:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2285941#M56069</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-01-17T06:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286006#M56073</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349843" data-lia-user-login="Chandrashekar" class="lia-mention lia-mention-user"&gt;Chandrashekar&lt;/a&gt; , summarize will use columns what is there in visual display(grouped/un summarized) , example if comp is used in visual&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE (&lt;BR /&gt;sumx(addcolumns(summarize(Table1[comp]), "_1"&lt;BR /&gt;COUNTROWS(Table1), (FILTER( All(Table1), Table1[Priority] = 1 &amp;amp;&amp;amp; Table1[Date] =selecteddate &amp;amp;&amp;amp; Table1 [Que]=selectedque)),&lt;BR /&gt;TREATAS ( CR_tbl, Table1[comp], Table1[Reg] ) ),[_1]&lt;BR /&gt;))&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 06:58:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286006#M56073</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-17T06:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286039#M56076</link>
      <description>&lt;P&gt;Hello Amit,&lt;/P&gt;&lt;P&gt;am getting incorrect total in Table may I know how to fix this issue. Should I use Summarize in measures or any other way to fix it?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 07:19:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286039#M56076</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-01-17T07:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286081#M56077</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349843" data-lia-user-login="Chandrashekar" class="lia-mention lia-mention-user"&gt;Chandrashekar&lt;/a&gt; ,If this does not help&lt;BR /&gt;Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 07:39:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286081#M56077</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-17T07:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286332#M56087</link>
      <description>&lt;P&gt;Hello Amit,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and got the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandrashekar B&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 09:42:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-function/m-p/2286332#M56087</guid>
      <dc:creator>Chandrashekar</dc:creator>
      <dc:date>2022-01-17T09:42:08Z</dc:date>
    </item>
  </channel>
</rss>

