Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi Experts
i am trying to replicate the Calculation in tabke below in Power BI. i.e. Cell H4*G5 and copy down in column H5 onwrds. Here is a link to a site that was given to me and i have followed example 5 (see link)
See example 5:
https://exceleratorbi.com.au/compound-growth-using-dax/

Attached is my PBIX file with sample data. please refer to Table STEMBRANDYEARS
My H Column is [Holder Column]
1-D/N is 1-e_i/d_i and i am trying to populate the result into column s(t) my measure is in this column.
not sure what i am doing wrong.
https://www.dropbox.com/s/auvmnu2so83rfiv/Test_KPV_1.1_%281%29.pbix?dl=0
Solved! Go to Solution.
Hi, It seems that you want to calculate running multiplication based on year, right? If so, you could try to use below expression to see whether it works or not
Column = exp(
SUMX(
FILTER(ALL(Table4), Table4[year]<=EARLIER(Table4[year])),
ln(Table4[Column1])
)
)Or
Measure 8 = exp(
SUMX(
FILTER(ALL(Table4), Table4[year]<=MAX(Table4[year])),
ln(Table4[Column1])
)
)You could refer to Cumulative Interest or Inflation, Multiplying Every Value in a Column, Why Don’t We Have PRODUCTX? for details
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, It seems that you want to calculate running multiplication based on year, right? If so, you could try to use below expression to see whether it works or not
Column = exp(
SUMX(
FILTER(ALL(Table4), Table4[year]<=EARLIER(Table4[year])),
ln(Table4[Column1])
)
)Or
Measure 8 = exp(
SUMX(
FILTER(ALL(Table4), Table4[year]<=MAX(Table4[year])),
ln(Table4[Column1])
)
)You could refer to Cumulative Interest or Inflation, Multiplying Every Value in a Column, Why Don’t We Have PRODUCTX? for details
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |