<?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: Need Dax help in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3396355#M128112</link>
    <description>&lt;P&gt;Dear Community Team, thank you for the replay &amp;amp; DAX. will try &amp;amp; update you&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 07:04:36 GMT</pubDate>
    <dc:creator>amksnpower</dc:creator>
    <dc:date>2023-08-24T07:04:36Z</dc:date>
    <item>
      <title>Need Dax help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3387769#M127674</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am having data from 2017 for claims. i need to do mature warranty calculation ( in Excel I use the Edate to get a back date based on that date will sum claims &amp;amp; divide by production to get mature warranty percentage) similar I need the Dax function to calculate the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example: product supplies from Jan'2017. the warranty of the product is 15 months. if I want to calculate mature warranty&amp;nbsp;&lt;/P&gt;&lt;P&gt;July'23 - 15 months i.e. Apr'22. so will calculate the claim from Jan'2017 to Apr'22 &amp;amp; divide the supplies for the same period to get mature warranty percentage. is mean till Apr'22 supplies warranty is completed &amp;amp; we won't get claims.&amp;nbsp; pls help me to get the dax for the same&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 16:51:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3387769#M127674</guid>
      <dc:creator>amksnpower</dc:creator>
      <dc:date>2023-08-18T16:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3388013#M127685</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="605162" data-lia-user-login="amksnpower" class="lia-mention lia-mention-user"&gt;amksnpower&lt;/a&gt;&amp;nbsp;There is an EDATE function in DAX as well as EOMONTH function as well.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 22:36:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3388013#M127685</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2023-08-18T22:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3391581#M127857</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="605162" data-lia-user-login="amksnpower" class="lia-mention lia-mention-user"&gt;amksnpower&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please have a try.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Mature Warranty % =
VAR CurrentDate =
    TODAY ()
VAR WarrantyPeriod =
    15 - MAX ( table[change this to your desired warranty period in months ] )
VAR MatureDate =
    EDATE ( CurrentDate, - WarrantyPeriod )
VAR Claims =
    CALCULATE (
        SUM ( Claims[Amount] ),
        FILTER ( Claims, Claims[Date] &amp;lt;= MatureDate )
    )
VAR Supplies =
    CALCULATE (
        SUM ( Supplies[Quantity] ),
        FILTER ( Supplies, Supplies[Date] &amp;lt;= MatureDate )
    )
RETURN
    DIVIDE ( Claims, Supplies )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;BR /&gt;Community Support Team _ Rongtie&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&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&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 05:58:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3391581#M127857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-22T05:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3396355#M128112</link>
      <description>&lt;P&gt;Dear Community Team, thank you for the replay &amp;amp; DAX. will try &amp;amp; update you&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 07:04:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3396355#M128112</guid>
      <dc:creator>amksnpower</dc:creator>
      <dc:date>2023-08-24T07:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need Dax help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3400931#M128405</link>
      <description>&lt;P&gt;Dear Bro,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it is working, I dynamically changed the Edate formula, claims, and supplies. Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;need support as I made claims &amp;amp; supplies linked with the Date table to get the date common. but I cannot use that Date table, please help me with that. The date table created a relationship with claims and supplies.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Aug 2023 14:35:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Dax-help/m-p/3400931#M128405</guid>
      <dc:creator>amksnpower</dc:creator>
      <dc:date>2023-08-27T14:35:11Z</dc:date>
    </item>
  </channel>
</rss>

