I'm trying to build an amortization schedule using Snowflake-SQL however I need two columns to reference each other in order to calculate the active and the present value. In excel, it would be something like this:
In SQL, I tried doing it like this but it doesn't work:
,LAG(present_value) OVER (PARTITION BY ti.request_id ORDER BY ti.reference_date) AS active_value
,active_value - c.installment_amount AS present_value
How am I able to replicate what I did using excel in SQL?
so with a janky CTE for the seed data:
and a recursive CTE this can be solved:
giving:
I was not 100% of you daily interest rate or payment, so solving those took that most time. So next please just include them.
I also would not use
double
money.. but my first take at use number(20,10) was not so successful..