<?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 the number of applications in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490493#M133632</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="612491" data-lia-user-login="mina97" class="lia-mention lia-mention-user"&gt;mina97&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure if i fully get you. you may try to write two measures like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AcceptedNotResubmited = 
SUMX(
    VALUES(data[order]),
    VAR _list = CALCULATETABLE( VALUES(data[status]))
    RETURN    
    IF(
       "Accepted" IN _list &amp;amp;&amp;amp; NOT "resubmited" IN _list,
        1,
        0
    )
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;AcceptedResubmited = 
SUMX(
    VALUES(data[order]),
    VAR _list = CALCULATETABLE( VALUES(data[status]))
    RETURN    
    IF(
       "Accepted" IN _list &amp;amp;&amp;amp; "resubmited" IN _list,
        1,
        0
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they worked like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Oct 2023 06:21:08 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2023-10-23T06:21:08Z</dc:date>
    <item>
      <title>count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490378#M133616</link>
      <description>&lt;P&gt;i have the following data&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;order&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;stauts&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;216&lt;/TD&gt;&lt;TD&gt;submited&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;216&lt;/TD&gt;&lt;TD&gt;accepted&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;217&lt;/TD&gt;&lt;TD&gt;submited&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;217&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;resumited&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;217&lt;/TD&gt;&lt;TD&gt;accepted&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;218&lt;/TD&gt;&lt;TD&gt;submit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;218&lt;/TD&gt;&lt;TD&gt;return to applicant&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;218&lt;/TD&gt;&lt;TD&gt;resubmit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;218&lt;/TD&gt;&lt;TD&gt;reject&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;1- i need to count the number of orders that got &lt;STRONG&gt;accepted&lt;/STRONG&gt; without being &lt;STRONG&gt;re submit&lt;/STRONG&gt; so in this case it should give one order&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help and thank you&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;2-&amp;nbsp;&lt;/P&gt;&lt;P&gt;1- i need to count the number of orders that got &lt;STRONG&gt;accepted&lt;/STRONG&gt; with being &lt;STRONG&gt;re submit&lt;/STRONG&gt; so in this case it should give one order&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help and thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 05:00:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490378#M133616</guid>
      <dc:creator>mina97</dc:creator>
      <dc:date>2023-10-23T05:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490384#M133619</link>
      <description>&lt;P&gt;To count the number of orders that got accepted without being resubmitted in Power BI, you can create a calculated column or measure based on your data. Here are the steps for both scenarios:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Scenario 1: Count the number of orders that got accepted without being resubmitted.&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to the "Model" view in Power BI to create a calculated column:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Click on the "Data" icon on the left pane.&lt;/LI&gt;&lt;LI&gt;Select the table containing your data (e.g., "Orders").&lt;/LI&gt;&lt;LI&gt;Click on "New Column" in the modeling tab.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;In the formula bar, you can use a DAX (Data Analysis Expressions) formula to create the calculated column. You can use the following formula:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;AcceptedWithoutResubmit = IF(MAX('Orders'[status]) = "accepted" &amp;amp;&amp;amp; COUNTROWS(FILTER('Orders', 'Orders'[order] = EARLIER('Orders'[order]) &amp;amp;&amp;amp; 'Orders'[status] = "resubmit")) = 0, 1, 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;This formula checks if the order status is "accepted" and if there are no corresponding "resubmit" entries for the same order. It assigns a 1 if the condition is met, and 0 otherwise.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;After creating the calculated column, you can use it in your visualizations to count the number of orders that meet the criteria.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;Scenario 2: Count the number of orders that got accepted with being resubmitted.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;To count the number of orders that got accepted with being resubmitted, you can use a similar approach. The DAX formula would be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AcceptedWithResubmit =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS('Orders'),&lt;BR /&gt;FILTER('Orders', 'Orders'[status] = "accepted" &amp;amp;&amp;amp; 'Orders'[order] IN&lt;BR /&gt;(FILTER('Orders', 'Orders'[status] = "resubmit" &amp;amp;&amp;amp; 'Orders'[order] = EARLIER('Orders'[order]))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This formula calculates the count of orders where the status is "accepted" and the order appears in the list of orders with a "resubmit" status.&lt;/P&gt;&lt;P&gt;After creating the calculated column for scenario 2, you can also use it in your visualizations to count the number of orders that meet this criteria.&lt;/P&gt;&lt;P&gt;Remember to replace 'Orders' with the actual name of your table containing the data, and adjust the column names as necessary based on your data model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 05:08:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490384#M133619</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-10-23T05:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490399#M133621</link>
      <description>&lt;P&gt;Hey i really appreciate your help&amp;nbsp;&lt;BR /&gt;First i am dealing with a data base so i can not add a new column it has to be a meausre&amp;nbsp;&lt;BR /&gt;i tried this Dax code :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AcceptedWithResubmit = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;('RPT_GHAD_PERFORMANCE'),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;('RPT_GHAD_PERFORMANCE', 'RPT_GHAD_PERFORMANCE'[STATUS_NAME_EN] = &lt;/SPAN&gt;&lt;SPAN&gt;"Approved"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&amp;amp; 'RPT_GHAD_PERFORMANCE'[REQUEST_NUMBER] &lt;/SPAN&gt;&lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;('RPT_GHAD_PERFORMANCE', 'RPT_GHAD_PERFORMANCE'[TASK_TYPE] = &lt;/SPAN&gt;&lt;SPAN&gt;"Resubmit"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&amp;amp; 'RPT_GHAD_PERFORMANCE'[REQUEST_NUMBER] = &lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;('RPT_GHAD_PERFORMANCE'[REQUEST_NUMBER])))))&lt;BR /&gt;and it gives me this error&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;2-&amp;nbsp;&lt;BR /&gt;i also tried this one&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;AcceptedWithoutResubmit = IF(MAX('Orders'[status]) = "accepted" &amp;amp;&amp;amp; COUNTROWS(FILTER('Orders', 'Orders'[order] = EARLIER('&lt;STRONG&gt;Orders'[order]&lt;/STRONG&gt;) &amp;amp;&amp;amp; 'Orders'[status] = "resubmit")) = 0, 1, 0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;bit it did not work because of the bold word it did not show&lt;BR /&gt;&lt;BR /&gt;please help and thank you&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 23 Oct 2023 05:27:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490399#M133621</guid>
      <dc:creator>mina97</dc:creator>
      <dc:date>2023-10-23T05:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490418#M133622</link>
      <description>&lt;P&gt;It seems that you're encountering issues with your DAX measures in Power BI. Let's address each of your questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;AcceptedWithResubmit Measure:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The DAX code you provided seems to be on the right track. It's attempting to count the number of orders that are "Approved" and have a corresponding "Resubmit" task. However, the error you're seeing may be related to the data structure and context in your model.&lt;/P&gt;&lt;P&gt;To make this measure work, you should ensure that your data model is set up correctly. Specifically, you should check the relationships between tables, especially if you have a table containing request numbers and another table containing the status and task type information. Make sure you have a relationship established between them. If there's no direct relationship, you might need to use functions like RELATED or RELATEDTABLE to create the necessary filter context.&lt;/P&gt;&lt;P&gt;Here's the modified measure:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;AcceptedWithResubmit =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS('RPT_GHAD_PERFORMANCE'),&lt;BR /&gt;FILTER(&lt;BR /&gt;'RPT_GHAD_PERFORMANCE',&lt;BR /&gt;'RPT_GHAD_PERFORMANCE'[STATUS_NAME_EN] = "Approved" &amp;amp;&amp;amp;&lt;BR /&gt;'RPT_GHAD_PERFORMANCE'[REQUEST_NUMBER] IN&lt;BR /&gt;(&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;'RPT_GHAD_PERFORMANCE',&lt;BR /&gt;'RPT_GHAD_PERFORMANCE'[TASK_TYPE] = "Resubmit"&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AcceptedWithoutResubmit Measure:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Your code for this measure seems to be almost correct, but the issue might be with the context transition of EARLIER. To address this, you should wrap your condition with SUMX to create a proper iterator:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AcceptedWithoutResubmit =&lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER('Orders', 'Orders'[status] = "accepted"),&lt;BR /&gt;IF(&lt;BR /&gt;COUNTROWS(&lt;BR /&gt;FILTER(&lt;BR /&gt;'Orders',&lt;BR /&gt;'Orders'[order] = EARLIER('Orders'[order]) &amp;amp;&amp;amp; 'Orders'[status] = "resubmit"&lt;BR /&gt;)&lt;BR /&gt;) = 0,&lt;BR /&gt;1,&lt;BR /&gt;0&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;The SUMX function allows you to aggregate the results properly and should work in the context of a measure.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Make sure that your data model is correctly set up, and these DAX measures should help you achieve your desired results in Power BI. If you continue to encounter issues, please double-check your data model and relationships between tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 05:43:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490418#M133622</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-10-23T05:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490445#M133627</link>
      <description>&lt;P&gt;Hey so this one worked perfectly! but i need it to count the &lt;STRONG&gt;unique&lt;/STRONG&gt; order number please help&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;AcceptedWithoutResubmit =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SUMX(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FILTER('Orders', 'Orders'[status] = "accepted"),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;COUNTROWS(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FILTER(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Orders',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Orders'[order] = EARLIER('Orders'[order]) &amp;amp;&amp;amp; 'Orders'[status] = "resubmit"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;) = 0,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 05:52:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490445#M133627</guid>
      <dc:creator>mina97</dc:creator>
      <dc:date>2023-10-23T05:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490493#M133632</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="612491" data-lia-user-login="mina97" class="lia-mention lia-mention-user"&gt;mina97&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not sure if i fully get you. you may try to write two measures like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AcceptedNotResubmited = 
SUMX(
    VALUES(data[order]),
    VAR _list = CALCULATETABLE( VALUES(data[status]))
    RETURN    
    IF(
       "Accepted" IN _list &amp;amp;&amp;amp; NOT "resubmited" IN _list,
        1,
        0
    )
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;AcceptedResubmited = 
SUMX(
    VALUES(data[order]),
    VAR _list = CALCULATETABLE( VALUES(data[status]))
    RETURN    
    IF(
       "Accepted" IN _list &amp;amp;&amp;amp; "resubmited" IN _list,
        1,
        0
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;they worked like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 06:21:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3490493#M133632</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-10-23T06:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: count the number of applications</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3492919#M133767</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="460868" data-lia-user-login="FreemanZ" class="lia-mention lia-mention-user"&gt;FreemanZ&lt;/a&gt;&amp;nbsp;i love youuuu that helpeddd thank YOU!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 05:42:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/count-the-number-of-applications/m-p/3492919#M133767</guid>
      <dc:creator>mina97</dc:creator>
      <dc:date>2023-10-24T05:42:07Z</dc:date>
    </item>
  </channel>
</rss>

