<?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 Circular dependency in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2491357#M68597</link>
    <description>&lt;P&gt;Hello, i was trying to find the delta variance of 2 columns minutes from table A and minutes from table B.&lt;/P&gt;&lt;P&gt;i used this formula in column inside table B :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Delta =&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA[Minutes]&lt;/SPAN&gt;&lt;SPAN&gt;)-&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(TableB&lt;/SPAN&gt;&lt;SPAN&gt;[Minutes]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;then i needed to find the percentage in Table B by creating a column which is percentage =&amp;nbsp; delta/ Table A[minutes]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but i get error&amp;nbsp;&amp;lt;pi&amp;gt;A circular dependency was detected: TableB[Delta], TableB[Column], TableB[Delta].&amp;lt;/pi&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 03 May 2022 16:43:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-05-03T16:43:53Z</dc:date>
    <item>
      <title>Circular dependency</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2491357#M68597</link>
      <description>&lt;P&gt;Hello, i was trying to find the delta variance of 2 columns minutes from table A and minutes from table B.&lt;/P&gt;&lt;P&gt;i used this formula in column inside table B :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Delta =&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TableA[Minutes]&lt;/SPAN&gt;&lt;SPAN&gt;)-&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(TableB&lt;/SPAN&gt;&lt;SPAN&gt;[Minutes]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;then i needed to find the percentage in Table B by creating a column which is percentage =&amp;nbsp; delta/ Table A[minutes]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but i get error&amp;nbsp;&amp;lt;pi&amp;gt;A circular dependency was detected: TableB[Delta], TableB[Column], TableB[Delta].&amp;lt;/pi&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 May 2022 16:43:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2491357#M68597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-03T16:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2492072#M68658</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , You need to create another measure &lt;/P&gt;
&lt;P&gt;Delta % = divide( [Delta], SUM(TableA[Minutes]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you should not use measure in a column &lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 01:30:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2492072#M68658</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-05-04T01:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Circular dependency</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2497870#M68976</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To resolve circular dependency issues, you could consider these solutions.&lt;/P&gt;
&lt;P&gt;1 Change Calculated column to Measure as amitchandak said&lt;/P&gt;
&lt;P&gt;2 Modify your Calculated column formula with some filters functions like REMOVEFILTERS&lt;/P&gt;
&lt;P&gt;3 Make some changes to the relationships in your model&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please take a look at this blog related to how to fix issue of Circular Dependency: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Circular-Dependency-between-Calculated-Columns-in-a-Table-in-DAX/ba-p/1877267" target="_blank" rel="noopener"&gt;Circular Dependency between Calculated Columns in ... - Microsoft Power BI Community&lt;/A&gt;. Hope it helps you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider&lt;STRONG&gt; Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _ Caiyun&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 02:32:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Circular-dependency/m-p/2497870#M68976</guid>
      <dc:creator>v-cazheng-msft</dc:creator>
      <dc:date>2022-05-10T02:32:10Z</dc:date>
    </item>
  </channel>
</rss>

