2 releases
0.1.1 | Feb 28, 2023 |
---|---|
0.1.0 | Dec 28, 2020 |
#153 in Finance
27KB
872 lines
xlsxfin.rs
Excel Financial functions.
Functions
- cumipmt
- fv
- ipmt
- pmt
- ppmt
Example
extern crate xlsxfin;
fn main() {
println!("{}", xlsxfin::pmt(0.08 / 12.0, 10, 1_000_000, 0, false));
}