<?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: Latest of certain meeting type per client in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451389#M131486</link>
    <description>&lt;P&gt;I'm afraid I'm getting errors. I'm going to amend my SQL for the dataset and just use filters. thanks for your help&lt;/P&gt;</description>
    <pubDate>Thu, 28 Sep 2023 09:15:52 GMT</pubDate>
    <dc:creator>Mark_Adams</dc:creator>
    <dc:date>2023-09-28T09:15:52Z</dc:date>
    <item>
      <title>Latest of certain meeting type per client</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3449963#M131386</link>
      <description>&lt;P&gt;Hello. I have seen similar queries but can't match them to this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have clients who have each had several meetings of different meeting types. I need a table that shows the most recent Core Meeting for each client please. So I wish to discard all of the other meeting types and then show just the most recent of the Core Meetings.&lt;/P&gt;&lt;P&gt;This is a sample of my unfiltered list:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is what I want to see&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 14:20:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3449963#M131386</guid>
      <dc:creator>Mark_Adams</dc:creator>
      <dc:date>2023-09-27T14:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Latest of certain meeting type per client</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451118#M131466</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508076" data-lia-user-login="Mark_Adams" class="lia-mention lia-mention-user"&gt;Mark_Adams&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure test =&lt;BR /&gt;SUMMARIZECOLUMNS(YourTable[Client Code],YourTable[Type], "@Max Date of Meeting", MAX(YourTable[Date of Meeting])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;Adjust your table name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Did I answer your question? Kudos appreciated / accept solution!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 06:43:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451118#M131466</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-09-28T06:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Latest of certain meeting type per client</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451389#M131486</link>
      <description>&lt;P&gt;I'm afraid I'm getting errors. I'm going to amend my SQL for the dataset and just use filters. thanks for your help&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 09:15:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451389#M131486</guid>
      <dc:creator>Mark_Adams</dc:creator>
      <dc:date>2023-09-28T09:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Latest of certain meeting type per client</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451477#M131493</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508076" data-lia-user-login="Mark_Adams" class="lia-mention lia-mention-user"&gt;Mark_Adams&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am take same data you provide&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;make a new measure&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;result = &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;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[date of meeting]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[type]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"core meeting"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;put client code , type , result in table you get your answer&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did i answer your question? Mark my post as a solution which help other people to find&amp;nbsp; fast and easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Sep 2023 10:15:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451477#M131493</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2023-09-28T10:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Latest of certain meeting type per client</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451479#M131494</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508076" data-lia-user-login="Mark_Adams" class="lia-mention lia-mention-user"&gt;Mark_Adams&lt;/a&gt;&amp;nbsp;I noticed that I create queary, please find measure below&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Measure test 2= MAX(YourTable[Date of Meeting])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Adjust your table name.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 10:15:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Latest-of-certain-meeting-type-per-client/m-p/3451479#M131494</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-09-28T10:15:48Z</dc:date>
    </item>
  </channel>
</rss>

