<?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: Count Unique Contact Numbers with the latest Change Date! in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953978#M98058</link>
    <description>&lt;P&gt;Thank you, it worked well &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>Wed, 07 Dec 2022 12:16:54 GMT</pubDate>
    <dc:creator>Waraldir</dc:creator>
    <dc:date>2022-12-07T12:16:54Z</dc:date>
    <item>
      <title>Count Unique Contact Numbers with the latest Change Date!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953522#M98020</link>
      <description>&lt;P&gt;Good morning comunity,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am still relatively new to DAX and need some support, with a task given to me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Contact No_, mail, messanger, phone, mobil, change date, change clock time).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Background is, that user can give the permissions that we can reach them via the given option (mail, mobil, etc.) for advertising.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Problem is, that for every permission change, a new line is created.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Contact No_ | mail | messanger | phone | mobil | change date | change clock time&lt;/P&gt;&lt;P&gt;000001&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| 0&amp;nbsp; &amp;nbsp; &amp;nbsp; | 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp;|&amp;nbsp; 10.10.2022&amp;nbsp; | 12:05 AM&lt;/P&gt;&lt;P&gt;000001&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| 1&amp;nbsp; &amp;nbsp; &amp;nbsp; | 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |&amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp;|&amp;nbsp; 11.10.2022&amp;nbsp; | 12:07 AM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Problem is, i need to count every option with the newst date and for every single Contact No_ .&lt;/P&gt;&lt;P&gt;What could be a good Workarround for that problem? If you need more Information please ask me :).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 09:20:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953522#M98020</guid>
      <dc:creator>Waraldir</dc:creator>
      <dc:date>2022-12-07T09:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Count Unique Contact Numbers with the latest Change Date!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953698#M98037</link>
      <description>&lt;P&gt;You could create a calculated table like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Latest data =
GENERATE (
    DISTINCT ( 'Table'[Contact no] ),
    SELECTCOLUMNS (
        CALCULATETABLE (
            TOPN ( 1, 'Table', 'Table'[change date], DESC, 'Table'[change time], DESC )
        ),
        "mail", 'Table'[mail],
        "messenger", 'Table'[messenger],
        "phone", 'Table'[phone],
        "mobile", 'Table'[mobile]
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;that would have the latest values for all customers.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 10:15:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953698#M98037</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-12-07T10:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Count Unique Contact Numbers with the latest Change Date!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953978#M98058</link>
      <description>&lt;P&gt;Thank you, it worked well &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>Wed, 07 Dec 2022 12:16:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-Unique-Contact-Numbers-with-the-latest-Change-Date/m-p/2953978#M98058</guid>
      <dc:creator>Waraldir</dc:creator>
      <dc:date>2022-12-07T12:16:54Z</dc:date>
    </item>
  </channel>
</rss>

