Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi, I need your help -
to create cumulative interest payments for loan amortization calculation.
I have calculation for INTEREST, but i need CUMULATIVE INTEREST also required.
There is my sample data.
Hoping for your support,
GINMED
Hi @GINMED ,
The link to your sample data no longer exists. In the interim, you may try the following:
**bleep** Interest =
CALCULATE (
[sum of interest],
FILTER ( ALL ( Table[Date] ), Table[Date] <= MAX ( Table[Date] ) )
)
**bleep** Interest =
CALCULATE (
[sum of interest],
FILTER ( ALL ( Table[Sequence] ), Table[Sequence] <= MAX ( Table[Sequence] ) )
)
The measures above will, of course, depend on your data model (separate dates table, etc).
Proud to be a Super User!
Check out the November 2023 Power BI update to learn about new features.