<?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: Need to show a table visual which shows difference of two identical tables of some components in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389734#M62095</link>
    <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are you even allowed to create the duplicate calendar table or this is also not allowed?&lt;/P&gt;</description>
    <pubDate>Sat, 12 Mar 2022 07:52:27 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-03-12T07:52:27Z</dc:date>
    <item>
      <title>Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389684#M62087</link>
      <description>&lt;P&gt;Hi Microsoft,&lt;/P&gt;&lt;P&gt;I have an exact sceneio of this link&amp;nbsp;&lt;A title="https://youtu.be/hu_fOtZDJwU" href="https://youtu.be/hu_fOtZDJwU" target="_self"&gt;https://youtu.be/hu_fOtZDJwU&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could able to create duplicate table and established an inactive relationship and written a DAX code like below&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Comparison _abc = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[ABC]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;USERELATIONSHIP&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Date_Dup[CYYMNN]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Facttable[CYYMNN]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;By establishing inactive relationship in data model and writting an above DAX upon that, I could able to achieve the requirement.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But, now, my team does not want touch the existing data moadel and do not want to establish an inactive relationship in the dataset because it is in live connection.&lt;BR /&gt;&lt;BR /&gt;Whatever , I need to do, I have to use only DAX/create only measures . So I got struck , how can I replace Userelationship function&amp;nbsp;from above DAX code&amp;nbsp; with something else inorder to achieve my scenerio without touching data model.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PLease guide.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank You&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 12 Mar 2022 06:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389684#M62087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-12T06:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389734#M62095</link>
      <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are you even allowed to create the duplicate calendar table or this is also not allowed?&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2022 07:52:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389734#M62095</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-12T07:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389741#M62096</link>
      <description>&lt;P&gt;If yes you can do the following&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Comparison _abc =
CALCULATE (
    [ABC],
    INTERSECT (
        ALL ( 'Date'[Year], 'Date'[Month Name] ),
        SUMMARIZE ( Date_Dup, Date_Dup[Year], Date_Dup[Month] )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;toy might need the change column names or&lt;SPAN&gt;&amp;nbsp;add/remove coulmns base on with coulmns are used for slicing.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Mar 2022 08:06:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2389741#M62096</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-12T08:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390307#M62130</link>
      <description>&lt;P&gt;Hi Tamerji1,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank You for replying!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 5 duplicate tables , not only Date table. For eg.,&lt;BR /&gt;1. Date_Dup-- Have columns (Month, year, CYYMNN)&lt;/P&gt;&lt;P&gt;2. HSB_Dup--Have columns(HSB_ID)&lt;/P&gt;&lt;P&gt;3. PAM_Dup-- Have columns(PAM_ID)&lt;/P&gt;&lt;P&gt;4. RP_Dup-- Have columns(PA_ID)&lt;/P&gt;&lt;P&gt;5. SU_Dup-- Have columns(STO_ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All those columns , I will be passing in a slicer for comparing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to pass all of them now?&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 02:46:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390307#M62130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-13T02:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390308#M62131</link>
      <description>&lt;P&gt;Hi Tamerji1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to show following output&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;GDP&lt;/TD&gt;&lt;TD&gt;abc&lt;/TD&gt;&lt;TD&gt;comparison_abc&lt;/TD&gt;&lt;TD&gt;Difference between abc and comparison_abc&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;TD&gt;8000&lt;/TD&gt;&lt;TD&gt;-7000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;TD&gt;2700&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;3500&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;TD&gt;-500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;TD&gt;-500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here abc and comparison_abc are identical measures(same to same )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 02:56:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390308#M62131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-13T02:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390322#M62133</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Can you please provide some screenshots of your data model and indicate which relationships you wish to create but you're not allowed to.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 03:50:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390322#M62133</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-13T03:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390343#M62136</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;Hi Tamerji1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the screenshots attached in a document. Please let me know if you need any other details as well.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 04:42:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390343#M62136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-13T04:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390347#M62137</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can the same approach to replace USERELATIONSHIP for all measures.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;[Filtered Measure] :=
CALCULATE (
    &amp;lt;target_measure&amp;gt;,
    INTERSECT (
        ALL (
            &amp;lt;target_granularity_column_1&amp;gt;,
            &amp;lt;target_granularity_column_2&amp;gt; 
        ),
        SUMMARIZE (
            &amp;lt;lookup_table&amp;gt;
            &amp;lt;lookup_granularity_column_1&amp;gt;
            &amp;lt;lookup_granularity_column_2&amp;gt;
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;However, this really depends on how your report is.&amp;nbsp;&lt;BR /&gt;if you wish you can share a sample no sensitive data file with one to cases I'll help you out with them&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 06:33:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390347#M62137</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-13T06:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390348#M62138</link>
      <description>&lt;P&gt;Hi tamerj1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way , to connect with you. So that I can share my screen and explain you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 06:43:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390348#M62138</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-13T06:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390354#M62139</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be possible only on next Saturday.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 07:02:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390354#M62139</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-13T07:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390363#M62142</link>
      <description>&lt;P&gt;Hi Tamerj1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sure, Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 07:34:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2390363#M62142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-13T07:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2400161#M62767</link>
      <description>&lt;P&gt;Hi Tamerj1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope we are connecting on Saturday. Is there a way/link and Time so that I can be ready with files .&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 09:42:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2400161#M62767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T09:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2400209#M62774</link>
      <description>&lt;P&gt;Hi Tamerj1,&lt;BR /&gt;&lt;BR /&gt;Sure, Thank You&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 09:55:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2400209#M62774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T09:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404289#M63073</link>
      <description>&lt;P&gt;Hi Tamerj1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please share the webex/some link to connect with you. Will join the invite&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 07:09:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404289#M63073</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-19T07:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404525#M63085</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am extremely sorry. For some reason I did not recieve a notification for this message but only now!&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 16:21:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404525#M63085</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-19T16:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need to show a table visual which shows difference of two identical tables of some components</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404542#M63086</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please check your private messages&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 16:37:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-to-show-a-table-visual-which-shows-difference-of-two/m-p/2404542#M63086</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-19T16:37:08Z</dc:date>
    </item>
  </channel>
</rss>

