<?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 DAX Measure - Unique Count of Users with 1 or less login in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3071990#M106675</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a DAX measure that can help me calculate the total number of users that have only logged in once to our platform.&lt;/P&gt;&lt;P&gt;I have a data field called Login and then an email column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've started with this measure which gives me the data I am looking to isolate.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I can then filter to login count is less than 1 but I would like to place a summary metric on a card and not show any of the user details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions please?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Feb 2023 13:54:12 GMT</pubDate>
    <dc:creator>Lisa-Eagle</dc:creator>
    <dc:date>2023-02-09T13:54:12Z</dc:date>
    <item>
      <title>DAX Measure - Unique Count of Users with 1 or less login</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3071990#M106675</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a DAX measure that can help me calculate the total number of users that have only logged in once to our platform.&lt;/P&gt;&lt;P&gt;I have a data field called Login and then an email column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've started with this measure which gives me the data I am looking to isolate.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I can then filter to login count is less than 1 but I would like to place a summary metric on a card and not show any of the user details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions please?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 13:54:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3071990#M106675</guid>
      <dc:creator>Lisa-Eagle</dc:creator>
      <dc:date>2023-02-09T13:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure - Unique Count of Users with 1 or less login</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3072298#M106694</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Users logged in once =
VAR SummaryTable =
    ADDCOLUMNS (
        DISTINCT ( 'Table'[Email] ),
        "@num logins", CALCULATE ( COUNTROWS ( 'Table' ) )
    )
VAR NumLoggedInOnce =
    COUNTROWS ( FILTER ( SummaryTable, [@num logins] &amp;lt;= 1 ) )
RETURN
    NumLoggedInOnce
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 09 Feb 2023 15:31:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3072298#M106694</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-02-09T15:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure - Unique Count of Users with 1 or less login</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3072405#M106699</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;that worked a treat! Appreciate the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 16:09:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Unique-Count-of-Users-with-1-or-less-login/m-p/3072405#M106699</guid>
      <dc:creator>Lisa-Eagle</dc:creator>
      <dc:date>2023-02-09T16:09:16Z</dc:date>
    </item>
  </channel>
</rss>

