<?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 a table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202821#M116498</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="143097" data-lia-user-login="esmat" class="lia-mention lia-mention-user"&gt;esmat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This is a calculated table not a measure&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2023 11:37:56 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-04-24T11:37:56Z</dc:date>
    <item>
      <title>summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202580#M116482</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a table with multi currency conversion factors, would like to summarize this table based on monthly average while maintaining all columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;table is below&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;</description>
      <pubDate>Mon, 24 Apr 2023 09:55:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202580#M116482</guid>
      <dc:creator>esmat</dc:creator>
      <dc:date>2023-04-24T09:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202692#M116487</link>
      <description>&lt;P&gt;You could use something like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Monthly summary =
ADDCOLUMNS (
    SUMMARIZE ( 'Currency table', 'Date'[Year month] ),
    "Avg USD", CALCULATE ( AVERAGE ( 'Currency table'[Value.USD] ) ),
    "Avg JPY", CALCULATE ( AVERAGE ( 'Currency table'[Value.JPY] ) )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 24 Apr 2023 10:36:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202692#M116487</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-24T10:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202704#M116489</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="143097" data-lia-user-login="esmat" class="lia-mention lia-mention-user"&gt;esmat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Of course you need to include all other columns&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Summary Table =
GROUPBY (
    ADDCOLUMNS ( 'Table', "Month Year", FORMAT ( 'Table'[Day], "MMM YYYY" ) ),
    [Month Year],
    "Value.USD", AVERAGEX ( CURRENTGROUP (), [Value.USD] ),
    "Value.JPY", AVERAGEX ( CURRENTGROUP (), [Value.JPY] ),
    "Value.BGN", AVERAGEX ( CURRENTGROUP (), [Value.BGN] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 24 Apr 2023 10:40:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202704#M116489</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-24T10:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202725#M116491</link>
      <description>&lt;P&gt;I got an error message as 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;</description>
      <pubDate>Mon, 24 Apr 2023 10:50:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202725#M116491</guid>
      <dc:creator>esmat</dc:creator>
      <dc:date>2023-04-24T10:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202736#M116492</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I obtained an error message as shown in yellow 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;</description>
      <pubDate>Mon, 24 Apr 2023 10:54:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202736#M116492</guid>
      <dc:creator>esmat</dc:creator>
      <dc:date>2023-04-24T10:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202821#M116498</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="143097" data-lia-user-login="esmat" class="lia-mention lia-mention-user"&gt;esmat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This is a calculated table not a measure&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 11:37:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202821#M116498</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-24T11:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: summarize a table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202958#M116515</link>
      <description>&lt;P&gt;thank you very much&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked perfectly&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 13:08:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summarize-a-table/m-p/3202958#M116515</guid>
      <dc:creator>esmat</dc:creator>
      <dc:date>2023-04-24T13:08:03Z</dc:date>
    </item>
  </channel>
</rss>

