<?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: Determine the latest status and Count ID based on date slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096252#M15985</link>
    <description>&lt;P&gt;Here is another way to do it.&amp;nbsp; You can use this measure in your Open Count card, and can just replace the status in two more cards.&amp;nbsp; This has a Date table that is used in the slicer for Max Date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OpenCount =&lt;BR /&gt;VAR slicerdate =&lt;BR /&gt;SELECTEDVALUE ( 'Date'[Date] )&lt;BR /&gt;VAR summarytable =&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;VALUES ( 'Status'[ID] ),&lt;BR /&gt;"MaxDate", CALCULATE (&lt;BR /&gt;MAX ( 'Status'[Date_Stamp (M/D/Y)] ),&lt;BR /&gt;ALL ( 'Status' ),&lt;BR /&gt;'Status'[Date_Stamp (M/D/Y)] &amp;lt;= slicerdate,&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] )&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;"LatestStatus", CALCULATE (&lt;BR /&gt;MIN ( 'Status'[Status] ),&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] ),&lt;BR /&gt;'Status'[Date_Stamp (M/D/Y)] = EARLIER ( [MaxDate] )&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;COUNTROWS ( FILTER ( summarytable, [LatestStatus] = "Open" ) )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works for you, please mark it as solution.&amp;nbsp; Kudos are appreciated too.&amp;nbsp; Please let me know if not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
    <pubDate>Tue, 19 May 2020 12:17:03 GMT</pubDate>
    <dc:creator>mahoneypat</dc:creator>
    <dc:date>2020-05-19T12:17:03Z</dc:date>
    <item>
      <title>Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1095214#M15962</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with 3 columns. ID, Date Stamp and Status_Change. I am working on a dashboard with a date slicer and several cards which counts how many IDs are in a certain status based on the dates selected in the date slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;Date_Stamp (M/D/Y)&lt;/TD&gt;&lt;TD&gt;Status&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;001&lt;/TD&gt;&lt;TD&gt;1/1/2020&lt;/TD&gt;&lt;TD&gt;Open&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;1/2/2020&lt;/TD&gt;&lt;TD&gt;Escalated&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;001&lt;/TD&gt;&lt;TD&gt;1/3/2020&lt;/TD&gt;&lt;TD&gt;Closed&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;002&lt;/TD&gt;&lt;TD&gt;1/2/2020&lt;/TD&gt;&lt;TD&gt;Open&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;002&lt;/TD&gt;&lt;TD&gt;1/4/2020&lt;/TD&gt;&lt;TD&gt;Closed&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;003&lt;/TD&gt;&lt;TD&gt;1/3/2020&lt;/TD&gt;&lt;TD&gt;Open&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;003&lt;/TD&gt;&lt;TD&gt;1/4/2020&lt;/TD&gt;&lt;TD&gt;Escalated&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;004&lt;/TD&gt;&lt;TD&gt;1/1/2020&lt;/TD&gt;&lt;TD&gt;Open&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;005&lt;/TD&gt;&lt;TD&gt;1/4/2020&lt;/TD&gt;&lt;TD&gt;Open&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;005&lt;/TD&gt;&lt;TD&gt;1/6/2020&lt;/TD&gt;&lt;TD&gt;Escalated&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I set the max date slicer date to 1/7/2020, Im trying to get each status card to output the number of of IDs whose latest status equals to it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open = 1&lt;/P&gt;&lt;P&gt;Escalated = 2&lt;/P&gt;&lt;P&gt;Closed = 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I tried the following formula but its counting all the rows with that status (Whereas Im hoping for it to only count it if the latest status is equal to it.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure = CALCULATE(COUNTROWS(FILTER('Table', 'Table'[Date_Stamp] &amp;lt;= CALCULATE( max('Table'[Date_Stamp]), ALLEXCEPT('Table&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;,'Table&lt;/SPAN&gt;&lt;SPAN&gt;'[ID])))),'Table'[Status]="Open")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks in advance for the help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 May 2020 01:48:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1095214#M15962</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-19T01:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1095434#M15963</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this measure&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Measure =
VAR _table =
    SUMMARIZE (
        MyTable,
        MyTable[ID],
        "Open", COUNTROWS (
            FILTER (
                ALL (
                    MyTable[ID],
                    MyTable[Status]
                ),
                MyTable[ID]
                    = EARLIER ( MyTable[ID] )
                    &amp;amp;&amp;amp; MyTable[Status] = "Open"
            )
        ),
        "Closed", COUNTROWS (
            FILTER (
                ALL (
                    MyTable[ID],
                    MyTable[Status]
                ),
                MyTable[ID]
                    = EARLIER ( MyTable[ID] )
                    &amp;amp;&amp;amp; MyTable[Status] = "Closed"
            )
        ),
        "Escalated", COUNTROWS (
            FILTER (
                ALL (
                    MyTable[ID],
                    MyTable[Status]
                ),
                MyTable[ID]
                    = EARLIER ( MyTable[ID] )
                    &amp;amp;&amp;amp; MyTable[Status] = "Escalated"
            )
        )
    )
VAR _closed =
    COUNTROWS (
        FILTER (
            _table,
            [Closed]
                &amp;lt;&amp;gt; BLANK ()
        )
    )
VAR _escalated =
    COUNTROWS (
        FILTER (
            _table,
            [Closed]
                = BLANK ()
                &amp;amp;&amp;amp; [Escalated]
                    &amp;lt;&amp;gt; BLANK ()
        )
    )
VAR _open =
    COUNTROWS (
        FILTER (
            _table,
            [Closed]
                = BLANK ()
                &amp;amp;&amp;amp; [Escalated]
                    = BLANK ()
                &amp;amp;&amp;amp; [Open]
                    &amp;lt;&amp;gt; BLANK ()
        )
    )
RETURN
    _open
/* you can return _closed/_escalted/_open */&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 05:09:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1095434#M15963</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-05-19T05:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096252#M15985</link>
      <description>&lt;P&gt;Here is another way to do it.&amp;nbsp; You can use this measure in your Open Count card, and can just replace the status in two more cards.&amp;nbsp; This has a Date table that is used in the slicer for Max Date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OpenCount =&lt;BR /&gt;VAR slicerdate =&lt;BR /&gt;SELECTEDVALUE ( 'Date'[Date] )&lt;BR /&gt;VAR summarytable =&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;VALUES ( 'Status'[ID] ),&lt;BR /&gt;"MaxDate", CALCULATE (&lt;BR /&gt;MAX ( 'Status'[Date_Stamp (M/D/Y)] ),&lt;BR /&gt;ALL ( 'Status' ),&lt;BR /&gt;'Status'[Date_Stamp (M/D/Y)] &amp;lt;= slicerdate,&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] )&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;"LatestStatus", CALCULATE (&lt;BR /&gt;MIN ( 'Status'[Status] ),&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] ),&lt;BR /&gt;'Status'[Date_Stamp (M/D/Y)] = EARLIER ( [MaxDate] )&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;COUNTROWS ( FILTER ( summarytable, [LatestStatus] = "Open" ) )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works for you, please mark it as solution.&amp;nbsp; Kudos are appreciated too.&amp;nbsp; Please let me know if not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 12:17:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096252#M15985</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-05-19T12:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096901#M16018</link>
      <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226208" data-lia-user-login="mahoneypat" class="lia-mention lia-mention-user"&gt;mahoneypat&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response. I tried your solution but, I am getting&amp;nbsp; (blank) as the answer when I put the measure in a card. Also, I am using a date between, not selecting on one date. Im trying to play around with the formula and see if something sticks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, Im curious to know why you are using EARLIER instead of MAX in the solution? Thanks once again&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 20:44:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096901#M16018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-19T20:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096915#M16020</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226208" data-lia-user-login="mahoneypat" class="lia-mention lia-mention-user"&gt;mahoneypat&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found a post where the person gets two similar columns and gets the answer in a tablular form (code written below), but dont have the expertise to convert it into a measure for a card.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;max date = var mind=MINX(ALLSELECTED('calendar'),'calendar'[Date]) var maxd=MAXX(ALLSELECTED('calendar'),'calendar'[Date]) return CALCULATE(MAX('Table 2'[dateentered]), FILTER(ALL('Table 2'), 'Table 2'[id]=MIN('Table 2'[id]) &amp;amp;&amp;amp; 'Table 2'[dateentered]&amp;gt;=mind &amp;amp;&amp;amp; 'Table 2'[dateentered]&amp;lt;=maxd))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;max value = LOOKUPVALUE('Table 2'[value],'Table 2'[dateentered],[max date])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 May 2020 21:03:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096915#M16020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-19T21:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096917#M16021</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="32333" data-lia-user-login="nandukrishnavs" class="lia-mention lia-mention-user"&gt;nandukrishnavs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response. I was looking at your solution, but dont see the date table being used. If there a specific reason for it?&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 21:09:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096917#M16021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-19T21:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096955#M16027</link>
      <description>&lt;P&gt;The version I sent had not relationship with the Date table and was single select.&amp;nbsp; This one works when the relationship is there and for a range of dates.&amp;nbsp; The EARLIER brings back the value for the current row in the virtual table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OpenCount =&lt;BR /&gt;VAR slicerdates =&lt;BR /&gt;VALUES ( 'Date'[Date] )&lt;BR /&gt;VAR summarytable =&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;VALUES ( 'Status'[ID] ),&lt;BR /&gt;"MaxDate", CALCULATE (&lt;BR /&gt;MAX ( 'Status'[Date_Stamp (M/D/Y)] ),&lt;BR /&gt;ALL ( 'Status' ),&lt;BR /&gt;VALUES ( 'Date'[Date] ),&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] )&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;"LatestStatus", CALCULATE (&lt;BR /&gt;MIN ( 'Status'[Status] ),&lt;BR /&gt;'Status'[ID] = EARLIER ( 'Status'[ID] ),&lt;BR /&gt;'Status'[Date_Stamp (M/D/Y)] = EARLIER ( [MaxDate] )&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;COUNTROWS ( FILTER ( summarytable, [LatestStatus] = "Open" ) )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works for you, please mark it as solution.&amp;nbsp; Kudos are appreciated too.&amp;nbsp; Please let me know if not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 21:57:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1096955#M16027</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-05-19T21:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1097031#M16040</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;// Assumption:
// There is a Date table in the model
// that joins to the fact table on
// [Date]. Fact table is called 'T'.
// There's also a dimension called Status
// that joins to 'T' on [Status]. Status
// has only one column - Status.
// All columns in 'T' must be hidden, so
// that slicing only takes place via dimensions.
// The above are the principles of
// good dimensional design, therefore you
// should follow them.


[# Open] =
var __maxDate = MAX( Dates[Date] )
var __idsWithLatestDate =
	CALCULATETABLE(
	
		ADDCOLUMNS(
			VALUES( T[ID] ),
			"@MaxDate",
				CALCULATE( MAX( T[Date_Stamp] ) )
		),
		
		Dates[Date] &amp;lt;= __maxDate,
		ALL( T )
	)
var __result =
	CALCULATE(
		DISTINCTCOUNT( T[ID] ),
		TREATAS(
			__idsWithLatestDate,
			T[ID],
			Dates[Date]
		),
		// Change the status to
		// Escalated or Closed
		// to get the corresponding
		// measures. Don't forget to
		// change the measure name
		// as well.
		Status[Status] = "Open"
		ALL( T )
	)
return
	__result&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 01:32:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1097031#M16040</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-20T01:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1097065#M16048</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I assume that the status will follow an order - open, escalated, closed. Also the measure will filter based on the date range selection. Please try that and let me know your comments.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 01:27:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1097065#M16048</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-05-20T01:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Determine the latest status and Count ID based on date slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1099560#M16119</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226208" data-lia-user-login="mahoneypat" class="lia-mention lia-mention-user"&gt;mahoneypat&lt;/a&gt;. That worked perfectly. I did have to change the time defining DAX syntax to MAX instead of VALUES ( as I was using a between date slicer but other than that, Im truly grateful for your help with this.&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 21:38:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-the-latest-status-and-Count-ID-based-on-date-slicer/m-p/1099560#M16119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-20T21:38:32Z</dc:date>
    </item>
  </channel>
</rss>

