Hi all,
I was wondering if someone might know how to build out a interest projection piece for an app?
For example if I had a loan which had a life of 3 years with 4 payments a year with a 6% interest rate. How would I go about projecting this out so that as the days draw closer and each interest period passes the current date the projections update dynamically to show the next 4 periods.
If anyone has any idea of how to go about this it would be greatly appreciated.
Below is roughly what I am trying to build towards
Many thanks,
Conor
Solved! Go to Solution.
hi there @cnr
Please find the following, the scenario is a loan amount, interest based on the term and the total repayment is divided by the term. This is them shown to the user base on date in reference to the payment term.
If this is not your exact requirement you can take some bits from it.
Result
Steps
ClearCollect(
colPayments,
ForAll(
Sequence(12), //3 years with 4 payments
{
payment: yourPaymentValue,
month: DateAdd(
yourStartDatePicker.SelectedDate,
Value * 4, //you wish to have 4 payments per month
Months
)
}
)
)
The above will give you all the value in your collection.
To make it time relevant filter the collection
The above will onlydisplaythe dates which newer than the current date.
Hope this helps
R
hi there @cnr
Please find the following, the scenario is a loan amount, interest based on the term and the total repayment is divided by the term. This is them shown to the user base on date in reference to the payment term.
If this is not your exact requirement you can take some bits from it.
Result
Steps
ClearCollect(
colPayments,
ForAll(
Sequence(12), //3 years with 4 payments
{
payment: yourPaymentValue,
month: DateAdd(
yourStartDatePicker.SelectedDate,
Value * 4, //you wish to have 4 payments per month
Months
)
}
)
)
The above will give you all the value in your collection.
To make it time relevant filter the collection
The above will onlydisplaythe dates which newer than the current date.
Hope this helps
R
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
196 | |
46 | |
45 | |
43 | |
36 |
User | Count |
---|---|
269 | |
82 | |
81 | |
74 | |
69 |