Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jabrillo
Helper I
Helper I

Monthly Burn Rate

I want to create a line chart of monthly burn rate. This is how my file looks like:

PeriodActual Cost
1100
2120
3140
4100

This is what I want to accomplish:

PeriodBurn RateCalculation
1100100/1
2110220/2
3120360/3
4115460/4

I tried this dax formula:

Burn Rate =

   VAR _PeriodCount = selectedvalue([Period])

   VAR _ActualCost = calculate(sum([Actual Cost]), [Period] <= max([Period]))

   VAR _BurnRate = divide(_ActualCost, _PeriodCount)

   RETURN _BurnRate

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?

 

1 ACCEPTED SOLUTION

why should it be a measure?  Can it be impacted by user filters?

 

Please provide sample data that fully covers your issue.
Please show the expected outcome based on the sample data you provided.

View solution in original post

8 REPLIES 8
v-menakakota
Community Support
Community Support

Hi @jabrillo ,

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.

Thank you.

Hi @jabrillo ,

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.

Thank you.

Hi @jabrillo ,

Can you please confirm whether you have resolved issue. If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well. This will be helpful for other community members who have similar problems to solve it faster. 

If we don’t hear back, we’ll go ahead and close this thread.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.



Thank you,
Menaka 

lbendlin
Super User
Super User

lbendlin_0-1746471119688.png

Burn Rate = 
var p = [Period]
return DIVIDE(SUMX(FILTER('Table',[Period]<=p),[Actual Cost]),p)

 

If Burn Rate is a measure, var p = [Period[ is not valid.

why should it be a measure?  Can it be impacted by user filters?

 

Please provide sample data that fully covers your issue.
Please show the expected outcome based on the sample data you provided.

Greg_Deckler
Community Champion
Community Champion

@jabrillo Try:

Burn Rate =
   VAR _Period = MAX( 'Table'[Period] )
   VAR _Table = FILTER( ALL( 'Table' ), [Period] <= _Period )
   VAR _ActualCost = SUMX( _Table, [Actual Cost] )
   VAR _BurnRate = DIVIDE( _ActualCost, _Period )
RETURN 
   _BurnRate


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

The table would also have Project ID as another column. So the table looks like this:

Project IDPeriodActual Cost
   
   
   
   

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.