Financial Functions
Financial Functions
Financial Functions
Dr Tarun K Soni
CUMIPMT Function
• Syntax
– =CUMIPMT (rate, nper, pv, start_period, end_period, type)
• Arguments
– rate - The interest rate per period.
– nper - The total number of payments for the loan.
– pv - The present value, or total value of all payments now.
– start_period - First payment in calculation.
– end_period - Last payment in calculation.
– type - When payments are due. 0 = end of period. 1 =
beginning of period.
CUMIPMT Function
Usage notes
– Be consistent with inputs for rate. For example, for
5-year loan with 4.5% annual interest, enter the
rate as 4.5%/12.
– The loan value (pv) must be entered as a positive
value.
CUMIPMT Function
CUMIPMT Function
What you are looking for is finding out the grand total, i.e. adding up the
sub-totals in four monthly sheets. The most obvious solution that comes to
mind is add up the sub-total cells from all the worksheets in the usual way:
=Jan!B6+Feb!B6+Mar!B6+Apr!B6
Three Dimensional Formula
• But what if you have 12 sheets for the whole
year, or even more sheets for several years?
This would be quite a lot of work. Instead, you
can use the SUM function with a 3D
reference to sum across sheets:
• =SUM(Jan:Apr!B6)
• =SUM(Jan:Dec!B2:B5)
How to create a 3-D reference in Excel