<?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: Difference between 2 columns in different table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/727061#M1580</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;Thanks for the idea!!&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2019 09:37:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-06-28T09:37:35Z</dc:date>
    <item>
      <title>Difference between 2 columns in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/726833#M1575</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am facing issue in creating DAX for difference between 2 columns in different tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table A and B has One to many relationship respectively.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table A has columns - Project name, estimated spent&lt;/P&gt;&lt;P&gt;Project name : abc, def, geh&lt;/P&gt;&lt;P&gt;estimated spent: 2000, 3000, 4000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table B has columns - Project name, actual spent&lt;/P&gt;&lt;P&gt;Project name: abc, abc, def, geh, def, geh&lt;/P&gt;&lt;P&gt;actual spent: 500, 400, 500,1000,1000,1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want visula to show data as:&lt;/P&gt;&lt;P&gt;Project name: abc, def, geh&lt;/P&gt;&lt;P&gt;Difference : 1100,1500,2000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help in making DAX for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 05:21:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/726833#M1575</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-28T05:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 2 columns in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/727013#M1579</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;-- measure 1 in table A

[Estimated Spend] :=
	SUM( TableA[estimated spend] )
	
-- measure 2 in table B

[Actual Spend] :=
	SUM( TableB[actual spend] )
	
-- measure 3 in table B

[Estimated - Actual] :=
	[Estimated Spend] - [Actual Spend]

-- TableB should be hidden and slicing should
-- happen by the attributes of TableA.&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Jun 2019 08:56:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/727013#M1579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-28T08:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between 2 columns in different table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/727061#M1580</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;Thanks for the idea!!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 09:37:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-2-columns-in-different-table/m-p/727061#M1580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-28T09:37:35Z</dc:date>
    </item>
  </channel>
</rss>

