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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Hendrikkert
Regular Visitor

calculating yearly budget adjusted for inflation

Hi All,

 

I'm trying to calculate a yearly budget that is adjusted for yearly inflation.
The budget is based on a calculation (Sum("Budgetcolumn")) and the inflation percentages are based on a table :

indexYearpercentage
120180,045
220190,045
320200,045
420210,045
520220,045
620230,045
720240,045
820250,045

To make checking my calculations easier the current inflation percentages are al the same, in the definitive model the percentages will be changed to different numbers.

I would like to calculate what my budget needs to be in 2025 with the inflation adjustment, in Excel I would calculate that like this:
 

ABCD
1YearPercentageBudget
220174,50%€ 100.000,00
320184,50%€ 104.500,00
420194,50%€ 109.202,50
520204,50%€ 114.116,61
620214,50%€ 119.251,86
720224,50%€ 124.618,19
820234,50%€ 130.226,01
920244,50%€ 136.086,18
1020254,50%€ 142.210,06


For 2017 i'd just fill in the budget manualy as it is the starting budget. However for the following years the formula would be:
2018 = D2+D2*C3
2019 = D3+D3*C4
Etc.

This of course will not work in Dax and after a full day searching trough google i can't seem to find a working method.
This could be because English is not my first language and i'm just not using the correct search terms...

 

In any case i would greatly appreciate somebody help me out!

Best regards,


Hendrik

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

You can use PRODUCTX() for that.

Calculated column:

Budget = 
var r = 'Table'[Row]
return 100000*COALESCE(PRODUCTX(filter('Table','Table'[Row]<r),1+'Table'[Percentage]/100),1)

See attached.

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

You can use PRODUCTX() for that.

Calculated column:

Budget = 
var r = 'Table'[Row]
return 100000*COALESCE(PRODUCTX(filter('Table','Table'[Row]<r),1+'Table'[Percentage]/100),1)

See attached.

works perfectly, thank you so much!

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

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.