<?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 Max Value per Quarter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3917885#M152504</link>
    <description>&lt;P&gt;I am working on effort certification which happens once a quarter. I am comparing what they certify vs the hours they actualy work per fiscal quarter/year. Our FY starts in September so they would certify on 9/1, 12/1, 4/1 and 7/1. I can't get the max to work once i filter by fiscal month even though it is within the same quarter. So if someone says they will do 20% effort on 9/1. I want to be able to use that percentage for Sep - Nov. It seems to work in September but when I change to October, it is blank even though it is within the quarter.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 May 2024 15:54:20 GMT</pubDate>
    <dc:creator>crjackson</dc:creator>
    <dc:date>2024-05-14T15:54:20Z</dc:date>
    <item>
      <title>Max Value per Quarter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3917885#M152504</link>
      <description>&lt;P&gt;I am working on effort certification which happens once a quarter. I am comparing what they certify vs the hours they actualy work per fiscal quarter/year. Our FY starts in September so they would certify on 9/1, 12/1, 4/1 and 7/1. I can't get the max to work once i filter by fiscal month even though it is within the same quarter. So if someone says they will do 20% effort on 9/1. I want to be able to use that percentage for Sep - Nov. It seems to work in September but when I change to October, it is blank even though it is within the quarter.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 15:54:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3917885#M152504</guid>
      <dc:creator>crjackson</dc:creator>
      <dc:date>2024-05-14T15:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Max Value per Quarter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3918783#M152538</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="470379" data-lia-user-login="crjackson" class="lia-mention lia-mention-user"&gt;crjackson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I create a table as you mentioned.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then I create a calculated column and here is the DAX code.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Quarterly Effort % =
VAR QuarterStart =
    DATE ( YEAR ( 'Table'[Date] ), MONTH ( 'Table'[Date] ), 1 )
VAR QuarterEnd =
    EOMONTH ( QuarterStart, 2 )
RETURN
    CALCULATE (
        AVERAGE ( 'Table'[EffortPercentage] ),
        FILTER ( 'Table', 'Table'[Date] &amp;gt;= QuarterStart &amp;amp;&amp;amp; 'Table'[Date] &amp;lt;= QuarterEnd )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;Yilong Zhou&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-bottom: 6.0pt;"&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;helps&lt;/I&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 01:55:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3918783#M152538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-15T01:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Max Value per Quarter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3958448#M153618</link>
      <description>&lt;P&gt;So the issue with this is I don't want to have to populate a row for each physician each month. They fill out the certification form once a Fiscal Quarter so the table looks like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I would like what they enter in September "20%" to count for the entire quarter so September, October and November. I was trying to calculate the Max per Fiscal Quarter however the problem I am running into is that as soon as the slicer changes to October (within the same quarter), it renders a blank.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 15:27:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Max-Value-per-Quarter/m-p/3958448#M153618</guid>
      <dc:creator>crjackson</dc:creator>
      <dc:date>2024-05-29T15:27:33Z</dc:date>
    </item>
  </channel>
</rss>

