<?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: Circular dependency of dax tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3438433#M130514</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp;, you need to create your second table in a bit different way:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Summary = 
ADDCOLUMNS(
SUMMARIZE ( 'Table',
    'Table'[Item Code],
    'Calendar'[yyyy-mm]),
    "Price", CALCULATE(DIVIDE ( SUM ( 'Table'[Value] ), SUM ( 'Table'[Qty] ) ))
)&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 19 Sep 2023 14:47:58 GMT</pubDate>
    <dc:creator>ERD</dc:creator>
    <dc:date>2023-09-19T14:47:58Z</dc:date>
    <item>
      <title>Circular dependency of dax tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3436375#M130404</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I occasionary encounter circular dependency issues when trying to create relationships between tables created using dax table functions and the dimension tables (such as calendar table etc.,)&amp;nbsp;&amp;nbsp;&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;&lt;P&gt;I attach the link to the pbix file which is generating the error message above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AlqFfzVTqicpniX6ztQG0kEQca1q?e=ArJ3tG" target="_blank"&gt;Price index.pbix&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I'd greatly appreciate it if anyone could let me know if there is a quick fix to this circular dependency issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 13:54:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3436375#M130404</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2023-09-18T13:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency of dax tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3436607#M130417</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp;your Calendar table is not correctly created, ADDCOLUMNS part. check it&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:16:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3436607#M130417</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-09-18T15:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency of dax tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3437510#M130450</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Regarding the circular dependency issue, sometimes removing the blanks in the calculated table helps, but this time, it didn't.&amp;nbsp; How do you fix this circular dependency issue of the calculated table?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AlqFfzVTqicpniX6ztQG0kEQca1q?e=ArJ3tG" target="_blank" rel="nofollow noopener noreferrer"&gt;Price index.pbix&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 04:36:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3437510#M130450</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2023-09-19T04:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency of dax tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3438433#M130514</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp;, you need to create your second table in a bit different way:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Summary = 
ADDCOLUMNS(
SUMMARIZE ( 'Table',
    'Table'[Item Code],
    'Calendar'[yyyy-mm]),
    "Price", CALCULATE(DIVIDE ( SUM ( 'Table'[Value] ), SUM ( 'Table'[Qty] ) ))
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 19 Sep 2023 14:47:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3438433#M130514</guid>
      <dc:creator>ERD</dc:creator>
      <dc:date>2023-09-19T14:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency of dax tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3438499#M130517</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp; The circular dependency error message disappeared, although it transpired that there was another underlying issue of many-to-many relationship&amp;nbsp;when trying to create a relationship with the calendar table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 15:27:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency-of-dax-tables/m-p/3438499#M130517</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2023-09-19T15:27:26Z</dc:date>
    </item>
  </channel>
</rss>

