<?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: URGENT - Calculate count of records filtering out previous state records in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192913#M18922</link>
    <description>&lt;P&gt;I think i got it to work, used below expression and it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="accessed",'Brand Excellence Academy_all'[object.type]="course") - CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="completed",'Brand Excellence Academy_all'[object.type]="course")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 30 Jun 2020 16:13:48 GMT</pubDate>
    <dc:creator>ApoorvaReddy</dc:creator>
    <dc:date>2020-06-30T16:13:48Z</dc:date>
    <item>
      <title>URGENT - Calculate count of records filtering out previous state records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192735#M18910</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a scenario below where a course (object.name) has 2 records in the table. First record which was accessed (In-progress) by an user (actor.mbox) and later has completed it. I am trying to get a count of all courses that were still In-progress but never got completed by an user. Can someone assist me in getting the right expression to pass ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;“Inprogress Courses” = CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="&lt;STRONG&gt;accessed&lt;/STRONG&gt;",'Brand Excellence Academy_all'[object.type]="course")&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Requirement: Should also filter out courses if they are completed&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;“Completed Courses” = CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="&lt;STRONG&gt;completed&lt;/STRONG&gt;",'Brand Excellence Academy_all'[object.type]="course")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Above expresssion works well for completed but “Inprogress Courses” should not take into count for those courses which are completed by an user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is really appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 15:33:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192735#M18910</guid>
      <dc:creator>ApoorvaReddy</dc:creator>
      <dc:date>2020-06-30T15:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT - Calculate count of records filtering out previous state records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192811#M18913</link>
      <description>&lt;P&gt;You can subtract the two. For eg: Inprogress - Completed so if any course gets completed then it will get subtracted from in progress.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 15:50:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192811#M18913</guid>
      <dc:creator>Pulkit</dc:creator>
      <dc:date>2020-06-30T15:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT - Calculate count of records filtering out previous state records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192860#M18918</link>
      <description>&lt;P&gt;I am sorry, but i am new to DAX, can you use my expression above for "In-Progress" to modify and send it here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really appreciate your assistance !&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 16:00:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192860#M18918</guid>
      <dc:creator>ApoorvaReddy</dc:creator>
      <dc:date>2020-06-30T16:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: URGENT - Calculate count of records filtering out previous state records</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192913#M18922</link>
      <description>&lt;P&gt;I think i got it to work, used below expression and it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="accessed",'Brand Excellence Academy_all'[object.type]="course") - CALCULATE(DISTINCTCOUNT('Brand Excellence Academy_all'[object.name]),'Brand Excellence Academy_all'[verb.display]="completed",'Brand Excellence Academy_all'[object.type]="course")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Jun 2020 16:13:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/URGENT-Calculate-count-of-records-filtering-out-previous-state/m-p/1192913#M18922</guid>
      <dc:creator>ApoorvaReddy</dc:creator>
      <dc:date>2020-06-30T16:13:48Z</dc:date>
    </item>
  </channel>
</rss>

