<?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: Counting columns and group by another column in a joined table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755609#M36656</link>
    <description>&lt;P&gt;Thank you. How do I group by a column on table 2 (Product) when I join the sku across them and count the click-throughs from table 1 (Clicks)?&lt;/P&gt;</description>
    <pubDate>Tue, 30 Mar 2021 19:42:29 GMT</pubDate>
    <dc:creator>wkolcz</dc:creator>
    <dc:date>2021-03-30T19:42:29Z</dc:date>
    <item>
      <title>Counting columns and group by another column in a joined table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755579#M36650</link>
      <description>&lt;P&gt;I have two spreadsheeting I imported into data. In the model I joined the two datasources on a column (sku). I need to count the values in column (click-throughs) in table 'Clicks' and group it by 'brandName' and in Product table to product a measure that includes the brandName and the total clicks (based on skus in that family)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 19:12:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755579#M36650</guid>
      <dc:creator>wkolcz</dc:creator>
      <dc:date>2021-03-30T19:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Counting columns and group by another column in a joined table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755592#M36652</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="281207" data-lia-user-login="wkolcz" class="lia-mention lia-mention-user"&gt;wkolcz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can group values in two ways, i.e.,&lt;/P&gt;&lt;P&gt;1. Power Query: By using the 'Group By' functionality&lt;/P&gt;&lt;P&gt;2. DAX: Creating a virtual table by using the SUMMARIZE() function&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 19:20:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755592#M36652</guid>
      <dc:creator>quantumudit</dc:creator>
      <dc:date>2021-03-30T19:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Counting columns and group by another column in a joined table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755609#M36656</link>
      <description>&lt;P&gt;Thank you. How do I group by a column on table 2 (Product) when I join the sku across them and count the click-throughs from table 1 (Clicks)?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 19:42:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1755609#M36656</guid>
      <dc:creator>wkolcz</dc:creator>
      <dc:date>2021-03-30T19:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Counting columns and group by another column in a joined table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1762579#M36905</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="281207" data-lia-user-login="wkolcz" class="lia-mention lia-mention-user"&gt;wkolcz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the late reply.&lt;/P&gt;&lt;P&gt;It would be great if you could send me a sample file with a detailed explanation of what output you want, so that, I can try to help you out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Udit&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 04:54:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1762579#M36905</guid>
      <dc:creator>quantumudit</dc:creator>
      <dc:date>2021-04-04T04:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Counting columns and group by another column in a joined table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1762619#M36906</link>
      <description>&lt;P&gt;Assume you have brand/product table linked to the click table on sku. Measure=sum([clicks])&lt;/P&gt;&lt;P&gt;Created pivot table with&lt;/P&gt;&lt;P&gt;&amp;nbsp;Brand and product as the label columns and measure as the value column.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 06:23:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-columns-and-group-by-another-column-in-a-joined-table/m-p/1762619#M36906</guid>
      <dc:creator>rfigtree</dc:creator>
      <dc:date>2021-04-04T06:23:12Z</dc:date>
    </item>
  </channel>
</rss>

