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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
tlenzmeier
Helper II
Helper II

Summing Values Based on a Multiplied Value

I am trying to do a cumulative sum based on a value derived from a percentage multiplied by a fixed amount. I need to generate a burnoff of the fixed amount. The attached spreadsheet provides an example. The amount is $14.9 million, and the duration of the contract is 30 months. There are two tables involved. The first is an amortization type table with multiple durations and the corresponding rates. The other is a contract table that has the calculated contract amount.  The one measure that I have is MAX('Burnoff'[Burnoff]) *  SUM('Contract'[Amount]). In a simple table, the rates total 100% and the amount totals $14.9 million. The contract table is joined to my calendar table(ContractDate<->Date).  The burnoff table is joined to the calendar table on the respective date fields. I have tried using CALCULATE(SUMX( . . . . but that doesn't work. I've tried using CALCULATE([Value], FILTER(ALL('Calendar'), 'Calendar'[Date] <= MAX('Calendar'[Date]))) and that doesn't work.

 

Any ideas??

 

Sample Burnoff

2 REPLIES 2
tlenzmeier
Helper II
Helper II

Sorry, left out another join: 'Project'[ProjectKey] = 'Burnoff'[ProjectKey].

Hi @tlenzmeier,

 

There is only one table in the sample. Can you share a complete sample? Since SUM('Contract'[Amount]) is fixed, I would suggest you use a VAR like below.

Measure = 
Var total = calculate( SUM('Contract'[Amount]), all(datetable))
return

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors