<?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: The column specified in the Groupby function was not found in the input table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996367#M100988</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;You can use SUMMARIZE to create the new calculated table&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;SalesInventorySummary =
SUMMARIZE (
    InventoryMovement,
    InventoryMovement[Posting Date],
    InventoryMovement[Document No_],
    InventoryMovement[Agent Code],
    InventoryMovement[Item No_],
    Agents[No_],
    Items[Item Code],
    "OrderQty", SUM ( InventoryMovement[Quantity] )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 02 Jan 2023 07:19:50 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-01-02T07:19:50Z</dc:date>
    <item>
      <title>The column specified in the Groupby function was not found in the input table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996258#M100978</link>
      <description>&lt;P&gt;Dear Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would seek the supproting, i have three relationship tables, when I groupby to get relevant column and got message stated that "The column "Item Code" specified in the Groupby function was not found in the input table"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am appreciated for helping&lt;/P&gt;&lt;P&gt;Thanks , LC Aynar&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 05:00:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996258#M100978</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-02T05:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: The column specified in the Groupby function was not found in the input table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996273#M100981</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Good Morning,&lt;BR /&gt;&lt;BR /&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; You should use one table column in Groupby that's why Dax give you error.&lt;BR /&gt;Agents[No_],items[&lt;SPAN&gt;"Item Code"&lt;/SPAN&gt;] both columns are belong to different table .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 05:35:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996273#M100981</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2023-01-02T05:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: The column specified in the Groupby function was not found in the input table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996307#M100985</link>
      <description>&lt;P&gt;Good Morning&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478098" data-lia-user-login="Mahesh0016" class="lia-mention lia-mention-user"&gt;Mahesh0016&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your guidance. But I aim to do goupby to get some columne name from another table for computing. Is there any solution to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 06:13:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996307#M100985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-02T06:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: The column specified in the Groupby function was not found in the input table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996367#M100988</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can use SUMMARIZE to create the new calculated table&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;SalesInventorySummary =
SUMMARIZE (
    InventoryMovement,
    InventoryMovement[Posting Date],
    InventoryMovement[Document No_],
    InventoryMovement[Agent Code],
    InventoryMovement[Item No_],
    Agents[No_],
    Items[Item Code],
    "OrderQty", SUM ( InventoryMovement[Quantity] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 02 Jan 2023 07:19:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996367#M100988</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-02T07:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: The column specified in the Groupby function was not found in the input table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996409#M100989</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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much. I got the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;LCAynar&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 07:55:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-column-specified-in-the-Groupby-function-was-not-found-in/m-p/2996409#M100989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-02T07:55:03Z</dc:date>
    </item>
  </channel>
</rss>

