UPDATE: Adds ACCRINT and ACCRINTM

This commit is contained in:
Nicolás Hatcher
2025-11-07 19:41:55 +01:00
parent a2d11a42cc
commit ff5be2f544
6 changed files with 50 additions and 1 deletions

View File

@@ -1830,4 +1830,14 @@ impl Model {
CalcResult::Number(rate * (cost - result))
}
// ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method])
pub(crate) fn fn_accrint(&mut self, args: &[Node], cell: CellReferenceIndex) -> CalcResult {
todo!()
}
// ACCRINTM(issue, settlement, rate, par, [basis])
pub(crate) fn fn_accrintm(&mut self, args: &[Node], cell: CellReferenceIndex) -> CalcResult {
todo!()
}
}