ntjc
January 9, 2024, 4:50am
1
I’m trying to get the running total of loans originated over the years. I’ve used this formula but keep getting syntax errors. Any help would be appreciated!
runningSum(sum({Loan Amount}), [{truncDate(“MM”, {First Disbursed Month})} ASC, {truncDate(“YYYY”, {First Disbursed Month})} ASC], )
Naveed
January 9, 2024, 5:04am
2
Hi
Here is the documentation of running sum. Read carefully , you are missing something.
runningSum
(
sum({Billed Amount}),
[truncDate(“MM”,Date) ASC]
)
Regards,
Naveed Ali
ntjc
January 18, 2024, 3:14pm
3
hi Naveed, thanks for the reply. I’ve tried it out but I’m still getting an error:
runningSum
(
[sum({Loan Amount})],
[truncDate(“MM”,{Disbursement Date})]
)
Hi @ntjc ,
Try this:
runningSum(
[sum({Loan Amount})],
[truncDate("MM",{Disbursement Date}) ASC]
)