<?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 get a table with lastest stage from each name based in date? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993787#M100801</link>
    <description>&lt;P&gt;From the same table&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2022 18:03:25 GMT</pubDate>
    <dc:creator>AlexFelipe</dc:creator>
    <dc:date>2022-12-29T18:03:25Z</dc:date>
    <item>
      <title>How to get a table with lastest stage from each name based in date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993550#M100774</link>
      <description>&lt;P&gt;&lt;img /&gt;I wanna show in table only the lastest stage from each name based in date.&lt;/P&gt;&lt;P&gt;I tried use MAXX function but i failed.&lt;/P&gt;&lt;P&gt;How can i make it? Thanks everyone&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 15:01:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993550#M100774</guid>
      <dc:creator>AlexFelipe</dc:creator>
      <dc:date>2022-12-29T15:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a table with lastest stage from each name based in date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993583#M100778</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="492319" data-lia-user-login="AlexFelipe" class="lia-mention lia-mention-user"&gt;AlexFelipe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please create a new measure and add the following formula:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;MaxStage = CALCULATE(MAX(Sheet1[Stage]),FILTER(Sheet1,Sheet1[Date]=MAX(Sheet1[Date])))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PowerBI workspace attached&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 15:26:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993583#M100778</guid>
      <dc:creator>themistoklis</dc:creator>
      <dc:date>2022-12-29T15:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a table with lastest stage from each name based in date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993621#M100781</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="492319" data-lia-user-login="AlexFelipe" class="lia-mention lia-mention-user"&gt;AlexFelipe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is the Date column form the same table or from a date table?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 15:42:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993621#M100781</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-29T15:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a table with lastest stage from each name based in date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993787#M100801</link>
      <description>&lt;P&gt;From the same table&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 18:03:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993787#M100801</guid>
      <dc:creator>AlexFelipe</dc:creator>
      <dc:date>2022-12-29T18:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a table with lastest stage from each name based in date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993793#M100803</link>
      <description>&lt;P&gt;Works! Thank you so much!!&lt;/P&gt;&lt;P&gt;I'll just leave the code here for everyone:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MaxDate = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MaxStage = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Stage]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Sheet1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 29 Dec 2022 18:11:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-table-with-lastest-stage-from-each-name-based-in/m-p/2993793#M100803</guid>
      <dc:creator>AlexFelipe</dc:creator>
      <dc:date>2022-12-29T18:11:36Z</dc:date>
    </item>
  </channel>
</rss>

