Skip to main content

cumipmt

Function cumipmt 

Source
pub fn cumipmt<P, F, T>(
    rate: f64,
    periods: u32,
    present_value: P,
    future_value: F,
    start_period: u32,
    end_period: u32,
    timing: T,
) -> FinanceResult<f64>
where P: Into<f64> + Copy, F: Into<f64> + Copy, T: Into<PaymentTiming>,
Expand description

Cumulative interest paid between two periods inclusive (Excel CUMIPMT).

ยงErrors

Same domain as cumprinc.