<?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: Grouping Table By One Column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641713#M77577</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I changed the way that the date is calculated to be this and it still shows up as the same for each company name.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jul 2022 15:26:04 GMT</pubDate>
    <dc:creator>NJ81858</dc:creator>
    <dc:date>2022-07-15T15:26:04Z</dc:date>
    <item>
      <title>Grouping Table By One Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641625#M77574</link>
      <description>&lt;P&gt;I am creating this table, in which every column is based on the Company Name. For some reason all of my other columns are showing the same values throughout the table. I just want to have each column to populate based on the Company Name for each particular row.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 14:34:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641625#M77574</guid>
      <dc:creator>NJ81858</dc:creator>
      <dc:date>2022-07-15T14:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping Table By One Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641671#M77575</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try put all your formulas in a CALCULATE Function also, you should remove all the filters exept the company name, something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Average Days = 
CALCULATE(
    AVERAGE(your_table[your_column]),
    ALLEXCEPT(your_table,your_table[Company Name]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;José&lt;BR /&gt;&lt;I&gt;Please mark this answer as the solution if it resolves your issue.&lt;/I&gt;&lt;BR /&gt;&lt;I&gt;Appreciate your kudos! &lt;/I&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 15:12:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641671#M77575</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-15T15:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping Table By One Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641713#M77577</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I changed the way that the date is calculated to be this and it still shows up as the same for each company name.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 15:26:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641713#M77577</guid>
      <dc:creator>NJ81858</dc:creator>
      <dc:date>2022-07-15T15:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping Table By One Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641812#M77582</link>
      <description>&lt;P&gt;Coult you share you PBI file so that we can take a look? If you want you can DM me&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2022 16:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2641812#M77582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-15T16:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping Table By One Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2646156#M77856</link>
      <description>&lt;P&gt;Hi，&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410679" data-lia-user-login="NJ81858" class="lia-mention lia-mention-user"&gt;NJ81858&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your new grouping table doesn't apear to have a relationship with table 'ACH Trans-INITATED' (based on field 'CompanyName') .&lt;/P&gt;
&lt;P&gt;Please try formula like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Date =
CALCULATE (
    LASTDATE ( 'ACH Trans-INITATED'[Batch Date Initiated] ),
    FILTER (
        'ACH Trans-INITATED',
        'Grouping Table'[Company Name] = 'ACH Trans-INITATED'[Company Name]
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Eason&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2022 02:17:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Grouping-Table-By-One-Column/m-p/2646156#M77856</guid>
      <dc:creator>v-easonf-msft</dc:creator>
      <dc:date>2022-07-19T02:17:05Z</dc:date>
    </item>
  </channel>
</rss>

