<?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: Highest Daily Value of Measure for Each Category in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643192#M77710</link>
    <description>&lt;P&gt;I switched the VALUES portion to ALLSELECTED instead, and that seemed to fix things. Thanks for the assist!&lt;/P&gt;</description>
    <pubDate>Sun, 17 Jul 2022 21:31:25 GMT</pubDate>
    <dc:creator>JustSayJoe</dc:creator>
    <dc:date>2022-07-17T21:31:25Z</dc:date>
    <item>
      <title>Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643169#M77706</link>
      <description>&lt;P&gt;There seems to be a lot of tutorials and responses to finding maximum values for dates, but none that I can find to fit my specific need.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Table = TestTable&lt;BR /&gt;Including columns:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Team&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Date&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Payment&lt;BR /&gt;(there are more, but for all intents and purposes, these will suffice)&lt;BR /&gt;&lt;BR /&gt;I also have a Measure that does a calculation returning a currency value. Let's call it, [Amount Measure].&lt;BR /&gt;&lt;BR /&gt;I'm trying to return the single highest daily amount of that [Amount Measure] for each Team. Is there a DAX formula that can accomplish this?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 20:17:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643169#M77706</guid>
      <dc:creator>JustSayJoe</dc:creator>
      <dc:date>2022-07-17T20:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643173#M77707</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="399144" data-lia-user-login="JustSayJoe" class="lia-mention lia-mention-user"&gt;JustSayJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you are slicing by team, simply try&lt;/P&gt;&lt;P&gt;MAX (&amp;nbsp;&lt;/P&gt;&lt;P&gt;VALUES ( testable[Date] ),&lt;/P&gt;&lt;P&gt;[Amount Measure]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 20:22:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643173#M77707</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-17T20:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643190#M77709</link>
      <description>&lt;P&gt;I received the following error when trying this.&lt;BR /&gt;&lt;BR /&gt;"Calculation error in measure. A table of multiple values was supplied where a single value was expected."&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 21:28:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643190#M77709</guid>
      <dc:creator>JustSayJoe</dc:creator>
      <dc:date>2022-07-17T21:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643192#M77710</link>
      <description>&lt;P&gt;I switched the VALUES portion to ALLSELECTED instead, and that seemed to fix things. Thanks for the assist!&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 21:31:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643192#M77710</guid>
      <dc:creator>JustSayJoe</dc:creator>
      <dc:date>2022-07-17T21:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643199#M77712</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="399144" data-lia-user-login="JustSayJoe" class="lia-mention lia-mention-user"&gt;JustSayJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry my mistake. It should be MAXX not MAX&lt;/P&gt;&lt;P&gt;MAXX (&amp;nbsp;&lt;/P&gt;&lt;P&gt;VALUES ( testable[Date] ),&lt;/P&gt;&lt;P&gt;[Amount Measure]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jul 2022 21:35:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2643199#M77712</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-17T21:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Highest Daily Value of Measure for Each Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2664271#M79109</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="399144" data-lia-user-login="JustSayJoe" class="lia-mention lia-mention-user"&gt;JustSayJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am so glad to hear that you have found the workaround . Please consider Accept it as the solution to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 08:41:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Highest-Daily-Value-of-Measure-for-Each-Category/m-p/2664271#M79109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-27T08:41:25Z</dc:date>
    </item>
  </channel>
</rss>

