<?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: Dax - Show difference between two related columns in different tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247960#M119737</link>
    <description>&lt;P&gt;Thank you very much I now have the desired results&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2023 14:42:20 GMT</pubDate>
    <dc:creator>abzt</dc:creator>
    <dc:date>2023-05-22T14:42:20Z</dc:date>
    <item>
      <title>Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247528#M119704</link>
      <description>&lt;P&gt;I have two columns of data for Emplolyees - linked via Employee ID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1 - Shows the employeees who have booked on for a particular date range (Emp ID/ First Name/ Last Name/Work Date/Hours)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tabel 2 - Is the listing of ALL company employees (Emp ID/ First Name/ Last Name)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Outcome - I am trying to get an output of the employees from Table 2 that do not feature in the Table 1 lisitng for the chosen sliced date range&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 12:28:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247528#M119704</guid>
      <dc:creator>abzt</dc:creator>
      <dc:date>2023-05-22T12:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247601#M119707</link>
      <description>&lt;P&gt;Use the columns from table 2 in the visual and add a filter so that 'Table 1'[Employee ID] is blank.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 12:52:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247601#M119707</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-05-22T12:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247675#M119712</link>
      <description>&lt;P&gt;Thank you for your response, following those steps however there are no blank values displaying in the filter listing for the visual as an option or returning if I choose "is blank" , I know I am expecting 40 records&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 13:15:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247675#M119712</guid>
      <dc:creator>abzt</dc:creator>
      <dc:date>2023-05-22T13:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247685#M119713</link>
      <description>&lt;P&gt;You could create a measure as COUNTROWS('Table 1') and filter for values &amp;gt;= 1.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 13:22:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247685#M119713</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-05-22T13:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247726#M119716</link>
      <description>&lt;P&gt;I'm not sure what Im doing wrong but I can't get to a list of those who have not booked on, the measure only shows those who have booked again i cant get to the blanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 13:39:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247726#M119716</guid>
      <dc:creator>abzt</dc:creator>
      <dc:date>2023-05-22T13:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247764#M119719</link>
      <description>&lt;P&gt;Just for debugging try creating a new table like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Tmp table =
CALCULATETABLE (
    EXCEPT ( VALUES ( 'Table 2'[Employee ID] ), VALUES ( 'Table 1'[Employee ID] ) ),
    DATESBETWEEN ( 'Date'[Date], DATE ( 2023, 1, 1 ), DATE ( 2023, 1, 31 ) )
)
&lt;/LI-CODE&gt;
&lt;P&gt;replacing the start and end dates with what you have chosen from the slicer.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 13:51:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247764#M119719</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-05-22T13:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247810#M119722</link>
      <description>&lt;P&gt;That seems to display the values I am looking for on the non-bookers, how can I incorporate that into the report?&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 14:01:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247810#M119722</guid>
      <dc:creator>abzt</dc:creator>
      <dc:date>2023-05-22T14:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247872#M119726</link>
      <description>&lt;P&gt;Create a measure like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Emp is visible =
IF (
    SELECTEDVALUE ( 'Table 2'[Employee ID] )
        IN EXCEPT ( VALUES ( 'Table 2'[Employee ID] ), VALUES ( 'Table 1'[Employee ID] ) ),
    1,
    0
)
&lt;/LI-CODE&gt;
&lt;P&gt;and add that as a visual level filter to only show when the value is 1&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 14:15:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247872#M119726</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-05-22T14:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dax - Show difference between two related columns in different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247960#M119737</link>
      <description>&lt;P&gt;Thank you very much I now have the desired results&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 14:42:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Show-difference-between-two-related-columns-in-different/m-p/3247960#M119737</guid>
      <dc:creator>abzt</dc:creator>
      <dc:date>2023-05-22T14:42:20Z</dc:date>
    </item>
  </channel>
</rss>

