<?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: Monthly Burn Rate in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4716789#M180666</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284600" data-lia-user-login="jabrillo" class="lia-mention lia-mention-user"&gt;jabrillo&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Can you please confirm whether you have resolved issue.&amp;nbsp;&lt;SPAN class="" data-contrast="auto"&gt;If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well.&amp;nbsp;This will be helpful for other community members who have similar problems to solve it faster.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If we don’t hear back, we’ll go ahead and close this thread.&lt;/SPAN&gt;&lt;SPAN&gt;Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum and create a new thread. We’ll be happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="" data-contrast="auto"&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Menaka&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Jun 2025 11:13:57 GMT</pubDate>
    <dc:creator>v-menakakota</dc:creator>
    <dc:date>2025-06-02T11:13:57Z</dc:date>
    <item>
      <title>Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680878#M179284</link>
      <description>&lt;P&gt;I want to create a line chart of monthly burn rate. This is how my file looks like:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Period&lt;/TD&gt;&lt;TD&gt;Actual Cost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;140&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;This is what I want to accomplish:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Period&lt;/TD&gt;&lt;TD&gt;Burn Rate&lt;/TD&gt;&lt;TD&gt;Calculation&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;100/1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;110&lt;/TD&gt;&lt;TD&gt;220/2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;TD&gt;360/3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;115&lt;/TD&gt;&lt;TD&gt;460/4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I tried this dax formula:&lt;/P&gt;&lt;P&gt;Burn Rate =&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;VAR _PeriodCount = selectedvalue([Period])&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;VAR _ActualCost = calculate(sum([Actual Cost]), [Period] &amp;lt;= max([Period]))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;VAR _BurnRate = divide(_ActualCost, _PeriodCount)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;RETURN _BurnRate&lt;/P&gt;&lt;P&gt;The burn rates for periods 2 to 4 were calculated incorrectly. Instead of dividing the YTD cost by the number of periods, it was dividing the cost of that period by the number of periods. What's wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 18:24:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680878#M179284</guid>
      <dc:creator>jabrillo</dc:creator>
      <dc:date>2025-05-05T18:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680901#M179286</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284600" data-lia-user-login="jabrillo" class="lia-mention lia-mention-user"&gt;jabrillo&lt;/a&gt;&amp;nbsp;Try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Burn Rate =
   VAR _Period = MAX( 'Table'[Period] )
   VAR _Table = FILTER( ALL( 'Table' ), [Period] &amp;lt;= _Period )
   VAR _ActualCost = SUMX( _Table, [Actual Cost] )
   VAR _BurnRate = DIVIDE( _ActualCost, _Period )
RETURN 
   _BurnRate&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 05 May 2025 18:48:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680901#M179286</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2025-05-05T18:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680907#M179287</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Burn Rate = 
var p = [Period]
return DIVIDE(SUMX(FILTER('Table',[Period]&amp;lt;=p),[Actual Cost]),p)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 18:52:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680907#M179287</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-05-05T18:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680926#M179288</link>
      <description>&lt;P&gt;If Burn Rate is a measure, var p = [Period[ is not valid.&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 19:33:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680926#M179288</guid>
      <dc:creator>jabrillo</dc:creator>
      <dc:date>2025-05-05T19:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680927#M179289</link>
      <description>&lt;P&gt;The table would also have Project ID as another column. So the table looks like this:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Project ID&lt;/TD&gt;&lt;TD&gt;Period&lt;/TD&gt;&lt;TD&gt;Actual Cost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 05 May 2025 19:35:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680927#M179289</guid>
      <dc:creator>jabrillo</dc:creator>
      <dc:date>2025-05-05T19:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680928#M179290</link>
      <description>&lt;P&gt;why should it be a measure?&amp;nbsp; Can it be impacted by user filters?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide sample data &lt;STRONG&gt;that fully covers your issue&lt;/STRONG&gt;.&lt;BR /&gt;Please show the expected outcome based on the sample data you provided.&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 19:36:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4680928#M179290</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-05-05T19:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4686248#M179489</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284600" data-lia-user-login="jabrillo" class="lia-mention lia-mention-user"&gt;jabrillo&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue?If not,please share the sample data. If it resolved , please share the solution here. This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P class="lia-align-left"&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 06:56:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4686248#M179489</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-15T06:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4688297#M179551</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/284600" target="_blank"&gt;@jabrillo&lt;/A&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 05:15:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4688297#M179551</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-05-12T05:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Burn Rate</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4716789#M180666</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="284600" data-lia-user-login="jabrillo" class="lia-mention lia-mention-user"&gt;jabrillo&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Can you please confirm whether you have resolved issue.&amp;nbsp;&lt;SPAN class="" data-contrast="auto"&gt;If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well.&amp;nbsp;This will be helpful for other community members who have similar problems to solve it faster.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If we don’t hear back, we’ll go ahead and close this thread.&lt;/SPAN&gt;&lt;SPAN&gt;Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum and create a new thread. We’ll be happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="" data-contrast="auto"&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Menaka&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 11:13:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Monthly-Burn-Rate/m-p/4716789#M180666</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-06-02T11:13:57Z</dc:date>
    </item>
  </channel>
</rss>

