<?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 Difference between two identical tables with multiple filters in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-two-identical-tables-with-multiple-filters/m-p/2406502#M35083</link>
    <description>&lt;P&gt;Hi Team,&lt;BR /&gt;Please find the below screenshot, My requirement is to show the difference between two identical tables. I am briefing below.&lt;BR /&gt;I have&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tinkle_0-1647858051083.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/687304i2EDD3376BEF08CC9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tinkle_0-1647858051083.png" alt="Tinkle_0-1647858051083.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used few tables in this report page.&lt;BR /&gt;1. Date Table- YEAR and MONTH are columns, which are used in slicer&lt;BR /&gt;2. Store Table- Retail Unit and Selling Unit are columns,which are used in slicer&lt;BR /&gt;3. HFB_V Table - HFB Name is the column,which are used in slicer&lt;BR /&gt;4. Product Table - PA Name is the column,which are used in slicer&lt;/P&gt;&lt;P&gt;And in the above screenshot, In the table I have used "Gross profit description" column from "Gross profit component Table",&lt;/P&gt;&lt;P&gt;GP and GM % are measures. And those were written as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GP =&lt;BR /&gt;IF (&lt;BR /&gt;ISFILTERED ( 'Product Range'[PA] ) || ISFILTERED ( 'Product Range'[PRA] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value] ),&lt;BR /&gt;BLANK ()&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value] ),&lt;BR /&gt;BLANK ()&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;GM% =&lt;/P&gt;&lt;P&gt;VAR _a_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_PA =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_PA,&lt;BR /&gt;_a_PA&lt;BR /&gt;)&lt;BR /&gt;) -------EURO-------&lt;BR /&gt;VAR _a_EUR_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_EUR_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_EUR_PA =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_EUR_PA,&lt;BR /&gt;_a_EUR_PA&lt;BR /&gt;)&lt;BR /&gt;) --------------------PA------------&lt;BR /&gt;--------LOC--------&lt;BR /&gt;VAR a =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR b =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR d =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;b,&lt;BR /&gt;a&lt;BR /&gt;)&lt;BR /&gt;) -------EURO-------&lt;BR /&gt;VAR _a_EUR =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_EUR =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_EUR =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_EUR,&lt;BR /&gt;_a_EUR&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;ISFILTERED ( 'Product Range'[PA] ) || ISFILTERED ( 'Product Range'[PRA] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;_d_EUR_PA,&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;_d_PA,&lt;BR /&gt;""&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;_d_EUR,&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;d,&lt;BR /&gt;""&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;GP_LVL_HFB_AFT_SDM_PBI_V and&amp;nbsp;GP_LVL_FCT_SDM_PBI_V are my fact tables.&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;From above screenshot, there both sides slicer filters are identical , means all are coming from same respective tables and we are just comparing them left table vs right table based on&lt;BR /&gt;Slicer selections.&lt;/P&gt;&lt;P&gt;Now I want to show one more table visual where it has their(Left table vs right table) difference.&lt;/P&gt;&lt;P&gt;For eg., See one more screenshot attached below, where I have provided few inputs and extracted the data. Now the third table should show the output as follows:&lt;/P&gt;&lt;P&gt;01.Sales Budgeted Price = 2615 -467 = 2148 and GM % = 100% -100% =0&lt;BR /&gt;03.GP0 GM0 = 788- 192 = 596 and GM%= 30.12 %- 41.11 % = -10.99 %&lt;BR /&gt;and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need your help, how I can achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tinkle_1-1647859700270.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/687313i60B40276D16FCC09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tinkle_1-1647859700270.png" alt="Tinkle_1-1647859700270.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 10:59:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-03-21T10:59:57Z</dc:date>
    <item>
      <title>Difference between two identical tables with multiple filters</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-two-identical-tables-with-multiple-filters/m-p/2406502#M35083</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;Please find the below screenshot, My requirement is to show the difference between two identical tables. I am briefing below.&lt;BR /&gt;I have&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tinkle_0-1647858051083.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/687304i2EDD3376BEF08CC9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tinkle_0-1647858051083.png" alt="Tinkle_0-1647858051083.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used few tables in this report page.&lt;BR /&gt;1. Date Table- YEAR and MONTH are columns, which are used in slicer&lt;BR /&gt;2. Store Table- Retail Unit and Selling Unit are columns,which are used in slicer&lt;BR /&gt;3. HFB_V Table - HFB Name is the column,which are used in slicer&lt;BR /&gt;4. Product Table - PA Name is the column,which are used in slicer&lt;/P&gt;&lt;P&gt;And in the above screenshot, In the table I have used "Gross profit description" column from "Gross profit component Table",&lt;/P&gt;&lt;P&gt;GP and GM % are measures. And those were written as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GP =&lt;BR /&gt;IF (&lt;BR /&gt;ISFILTERED ( 'Product Range'[PA] ) || ISFILTERED ( 'Product Range'[PRA] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value] ),&lt;BR /&gt;BLANK ()&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value] ),&lt;BR /&gt;BLANK ()&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;GM% =&lt;/P&gt;&lt;P&gt;VAR _a_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_PA =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_PA,&lt;BR /&gt;_a_PA&lt;BR /&gt;)&lt;BR /&gt;) -------EURO-------&lt;BR /&gt;VAR _a_EUR_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_FCT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_EUR_PA =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_EUR_PA =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_FCT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_EUR_PA,&lt;BR /&gt;_a_EUR_PA&lt;BR /&gt;)&lt;BR /&gt;) --------------------PA------------&lt;BR /&gt;--------LOC--------&lt;BR /&gt;VAR a =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR b =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR d =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;b,&lt;BR /&gt;a&lt;BR /&gt;)&lt;BR /&gt;) -------EURO-------&lt;BR /&gt;VAR _a_EUR =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( GP_LVL_HFB_AFT_SDM_PBI_V[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 1&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _b_EUR =&lt;BR /&gt;(&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;ALL ( 'Gross Profit Component' ),&lt;BR /&gt;'Gross Profit Component'[Gross Profit Id] = 2&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR _d_EUR =&lt;BR /&gt;DIVIDE (&lt;BR /&gt;SUM ( 'GP_LVL_HFB_AFT_SDM_PBI_V'[Value EUR] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( 'Gross Profit Component'[Gross Profit Id] ) IN { 2, 8, 9, 10 },&lt;BR /&gt;_b_EUR,&lt;BR /&gt;_a_EUR&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;ISFILTERED ( 'Product Range'[PA] ) || ISFILTERED ( 'Product Range'[PRA] ),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;_d_EUR_PA,&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;_d_PA,&lt;BR /&gt;""&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;IF (&lt;BR /&gt;SELECTEDVALUE ( Currency_Filter[Currency] ) = "EUR",&lt;BR /&gt;_d_EUR,&lt;BR /&gt;IF (&lt;BR /&gt;HASONEVALUE ( Store[Retail Unit Name] )&lt;BR /&gt;|| HASONEVALUE ( 'Primary Market Area'[Retail Unit Name] ),&lt;BR /&gt;d,&lt;BR /&gt;""&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;GP_LVL_HFB_AFT_SDM_PBI_V and&amp;nbsp;GP_LVL_FCT_SDM_PBI_V are my fact tables.&lt;/P&gt;&lt;P&gt;--------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;From above screenshot, there both sides slicer filters are identical , means all are coming from same respective tables and we are just comparing them left table vs right table based on&lt;BR /&gt;Slicer selections.&lt;/P&gt;&lt;P&gt;Now I want to show one more table visual where it has their(Left table vs right table) difference.&lt;/P&gt;&lt;P&gt;For eg., See one more screenshot attached below, where I have provided few inputs and extracted the data. Now the third table should show the output as follows:&lt;/P&gt;&lt;P&gt;01.Sales Budgeted Price = 2615 -467 = 2148 and GM % = 100% -100% =0&lt;BR /&gt;03.GP0 GM0 = 788- 192 = 596 and GM%= 30.12 %- 41.11 % = -10.99 %&lt;BR /&gt;and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need your help, how I can achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tinkle_1-1647859700270.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/687313i60B40276D16FCC09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tinkle_1-1647859700270.png" alt="Tinkle_1-1647859700270.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 10:59:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-two-identical-tables-with-multiple-filters/m-p/2406502#M35083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T10:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between two identical tables with multiple filters</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-two-identical-tables-with-multiple-filters/m-p/2414006#M35131</link>
      <description>&lt;P&gt;Hi @Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess you set up visual interaction with none in both slicers.&lt;/P&gt;
&lt;P&gt;Maybe you should consider creating a disconnected calendar table as the slicer of Table 2, and creating a measure to bind to the custom calendar table for calculation through filter conditions. This makes it easy to calculate the difference in Table 1.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Liang&lt;BR /&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 05:39:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-two-identical-tables-with-multiple-filters/m-p/2414006#M35131</guid>
      <dc:creator>V-lianl-msft</dc:creator>
      <dc:date>2022-03-24T05:39:00Z</dc:date>
    </item>
  </channel>
</rss>

