<?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: How to count user with REPORT transaction type only? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3732628#M145465</link>
    <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;please help me.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Feb 2024 07:06:48 GMT</pubDate>
    <dc:creator>kimchour</dc:creator>
    <dc:date>2024-02-29T07:06:48Z</dc:date>
    <item>
      <title>How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729284#M145306</link>
      <description>&lt;P&gt;Dear all,&lt;BR /&gt;&lt;BR /&gt;I would like to have a card counting how many user with REPORT transaction type only. I have screenshot to explain the scenarios. I would really appreciate for u taking your time to help me. Thank you in advance.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 03:20:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729284#M145306</guid>
      <dc:creator>kimchour</dc:creator>
      <dc:date>2024-02-28T03:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729334#M145307</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;users count expected result: =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            'User with daily transaction',
            'User'[Personnel Number],
            'Transaction'[Transaction Type]
        ),
        'Transaction'[Transaction Type] = "Report"
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 28 Feb 2024 03:43:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729334#M145307</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-02-28T03:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729365#M145309</link>
      <description>&lt;P&gt;Dear Jihwan,&lt;BR /&gt;&lt;BR /&gt;Thank you for your help. However, it is not really what i want because it include the user that have both REPORT and TRANSACTIONAL transaction type. and I want to count the user that have only REPORT type.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 04:01:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729365#M145309</guid>
      <dc:creator>kimchour</dc:creator>
      <dc:date>2024-02-28T04:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729375#M145311</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;thank you for your message, and please try something like below, or, please share your sample pbix file and then I can try to look into it. thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;users count expected result: =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            'User with daily transaction',
            'User'[Personnel Number],
            'Transaction'[Transaction Type]
        ),
        CALCULATE ( COUNTROWS ( VALUES ( ['Transaction'[Transaction Type] ) ) ) = 1
            &amp;amp;&amp;amp; 'Transaction'[Transaction Type] = "Report"
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 28 Feb 2024 04:12:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3729375#M145311</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-02-28T04:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3732628#M145465</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;please help me.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 07:06:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3732628#M145465</guid>
      <dc:creator>kimchour</dc:creator>
      <dc:date>2024-02-29T07:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3732753#M145470</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;users count expected result =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            'User with daily transaction',
            User[Personnel Number],
            'Transaction'[Transaction Type]
        ),
        CALCULATE (
            COUNTROWS (
                CALCULATETABLE (
                    SUMMARIZE ( 'User with daily transaction', 'Transaction'[Transaction Type] ),
                    ALL ( 'Transaction'[Transaction Type] )
                )
            )
        ) = 1
            &amp;amp;&amp;amp; 'Transaction'[Transaction Type] = "Report"
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 29 Feb 2024 07:37:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3732753#M145470</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-02-29T07:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to count user with REPORT transaction type only?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3733225#M145495</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;IT WORKS. Thank you so much.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 10:10:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-user-with-REPORT-transaction-type-only/m-p/3733225#M145495</guid>
      <dc:creator>kimchour</dc:creator>
      <dc:date>2024-02-29T10:10:48Z</dc:date>
    </item>
  </channel>
</rss>

