<?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: Measure to map Unique IDs Added and reduced to list in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201582#M19229</link>
    <description>&lt;P&gt;That's basically what EXCEPT()&amp;nbsp; does.&amp;nbsp; All the other lines are just preparation.&lt;/P&gt;</description>
    <pubDate>Sun, 05 Jul 2020 01:13:43 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2020-07-05T01:13:43Z</dc:date>
    <item>
      <title>Measure to map Unique IDs Added and reduced to list</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201538#M19222</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on a set of two tables, active users of a tool on April and May. I want to calculate the number of users who were added on the tool and those who stopped using it (i.e. left the org) based on their unique id.&lt;/P&gt;&lt;P&gt;How do i build a measure/s that helps calculate the additions and reductions to the list?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For eg. a measure that would show 1 for added for freddie.m and a measure that should 1 reducded i.e. ked.kal.&lt;/P&gt;&lt;P&gt;I will be build a matrix report comparing such metrics for each month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;April (Table)&lt;/TD&gt;&lt;TD&gt;May (Table)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Unique Id&lt;/TD&gt;&lt;TD&gt;Unique Id&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;s.ray&lt;/TD&gt;&lt;TD&gt;s.ray&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;bill.first&lt;/TD&gt;&lt;TD&gt;bill.first&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ked.kal&lt;/TD&gt;&lt;TD&gt;freddie.m&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;j.lenny&lt;/TD&gt;&lt;TD&gt;j.lenny&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jul 2020 22:52:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201538#M19222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-04T22:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to map Unique IDs Added and reduced to list</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201560#M19226</link>
      <description>&lt;P&gt;Have a look at this thread, it covers a similar scenario&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Return-new-removed-values-within-a-data-set-compared-to-their/td-p/1198939" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/Return-new-removed-values-within-a-data-set-compared-to-their/td-p/1198939&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tldr; : use the EXCEPT() function both ways.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jul 2020 23:42:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201560#M19226</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-04T23:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to map Unique IDs Added and reduced to list</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201562#M19227</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;Thank you so much.&lt;/P&gt;&lt;P&gt;I will take the time to understand that solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to have an easier workaround?&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;1. Have a measure that counts unique IDs common between April and May&lt;/P&gt;&lt;P&gt;2. To find unique ids lost = Total count of April - Count&amp;nbsp; of unique IDs common for April and May&lt;/P&gt;&lt;P&gt;3. To find unique ids added = Total Count of May - Count of Unique IDs common for April and May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would this potentially work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 00:02:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201562#M19227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-05T00:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to map Unique IDs Added and reduced to list</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201582#M19229</link>
      <description>&lt;P&gt;That's basically what EXCEPT()&amp;nbsp; does.&amp;nbsp; All the other lines are just preparation.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 01:13:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-map-Unique-IDs-Added-and-reduced-to-list/m-p/1201582#M19229</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-05T01:13:43Z</dc:date>
    </item>
  </channel>
</rss>

