ValQ - Plan
FormulaProductChangelogStart Trial
  • Introduction to ValQ
    • Get ValQ
    • The ValQ Workflow
  • Model
    • Get Data
    • Create Model
      • Dynamic Model
      • Custom Model
      • Import a Model
    • Model Editor
      • Node Operations
      • Editor Features
    • Node Settings
    • Templates
      • Apply Template
      • Manage Template Nodes
      • Import Template
      • Export Template
    • Formula Functions
      • Logical Functions
        • IF
        • SWITCH
        • AND
        • OR
        • NOT
        • XOR
        • IFNAN
      • Math Functions
        • SUM
        • SUBTRACT
        • PRODUCT
        • DIVISION
        • AVERAGE
        • AVERAGEEXZERO
        • AVERAGEEXNEG
        • AVERAGEEXZERONEG
        • COUNT
        • ABS
        • MIN
        • MAX
        • POWER
        • SQRT
        • EXP
        • LOG
        • ROUND
        • FLOOR
        • CEILING
      • Finance Functions
        • IRR
        • NPV
        • PMT
        • IPMT
        • FV
        • PV
        • CUMIPMT
        • CUMPRINC
        • RATE
      • Range Functions
        • RANGE
        • LastNPeriods
        • Get
        • ForEach
        • findByTitle
        • GETCURRENTRANGE
        • GETROWVALUE
        • THIS_SOURCE_KEY
        • PERIOD_LOOKUP
        • PRIOR_SERIES_PERIOD_LOOKUP
      • Static Identifiers
        • THIS/ME
        • CURRENT_SERIES*
        • CURRENT_SERIES_ID*
        • CURRENT_PERIOD_INDEX
        • CURRENT_NODE_VALUES
        • DS.SERIES
      • Node Properties
        • Node Properties Explanation
    • Global Settings
  • Plan
    • Create New Plan
    • Time Series Forecasting
    • Allocation Features
      • Goal Seek
      • Distribute
      • Copy to Periods
    • Driver Based Planning
      • Enabling Driver Based Plan
      • Configuring Driver Inputs
      • Bulk Configuration of Drivers
    • Plan Interface
  • Simulate
    • Create a Scenario
    • Perform Simulations
    • Manage Scenarios
    • Simulation Interface
    • Add Notes
    • Compare Scenarios
    • Scenario Analysis by Node
    • Create Initiatives in a Scenario
      • Steps to create initiatives
    • Create your Presentation
    • Understanding the Node Components
  • Report
    • Variance Analysis Report
  • ValQ Premium FAQs
  • Glossary
  • Resources
  • Release Notes
Powered by GitBook
On this page
  • Syntax
  • Arguments
  • Example
  • Result
  1. Model
  2. Formula Functions
  3. Finance Functions

CUMIPMT

The CUMIPMT function returns the cumulative interest paid between two periods.

Syntax

CUMIPMT (Rate, Nper, PV, start_period, end_period, Type) - > Number

Arguments

Arguments
Datatype
Description

Rate

Number, Node reference

The interest rate per period.

Nper

Number

The total number of periods.

PV

Number

The present value of the loan.

start_period

Number

The first payment period.

end_period

Number

The last payment period.

Type

Number

Indicates when the payments are made. Type is zero if payments are made at the end of the period and non-zero if payments are made at the start of the period.

Example

Consider a $10,000 loan at an annual rate of 10% that is to be paid off in 1.5 years. All payments are made at the beginning of the month. Calculate Cumulative Interest Payments for all periods.

Periods
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Rate

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

10%

Number of Years

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

1.5

Loan Amount

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

10000

Start Period

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

End Period

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

Payments Type

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

1

To achieve this, the following formula should be written in the [Cumulative Interest Payments] node:

CUMIPMT ([Rate]/12,[Number of Years]*12,[Loan Amount],1,[End Period],1)

Result

Cumulative Interest Payments

0

-78.369938

-152.42956

-222.14296

-287.4739

-348.38588

-404.84206

-456.80531

-504.238192

-547.102955

-585.361529

-618.97553

-647.906252

-672.114668

-691.561427

-706.206846

-716.010916

-720.933291

PreviousPVNextCUMPRINC

Last updated 1 year ago