Formula Input Type (2.9 and prior)

Formulas are used to perform mathematical functions within the SalesPro system in a document. There are four different formula input types. They all function the same except for the type of data output.

Formula (1)Number without decimals.
Formula (1.00)Number with decimals.
Formula ($1)Currency amount without decimals.
Formula ($1.00)Currency amount with decimals.

In the following example we will be subtracting the Deposit from the Contract Price in order to calculate the Balance Due On Completion.

  1. In order to use Formulas the cells we are performing the formula on need Identifiers. Add an identifier of ‘Contract Amount’ and an identifier of ‘Deposit’ by clicking Settings on the cells.
  2. Next in the Balance Due On Completion cell change the Input Type to Formula Currency ($1). In the Formula field use the Identifiers within square brackets to reference the values and subtract them. Enter the formula ‘[Contract Amount]-[Deposit]’.

The following functions can be used in formulas to perform various operations.

FunctionFormula / Syntax
Add[1] + [2]
Subtract[2] – [1]
Multiply[1] * [2]
Divide[2] / [1]
Raise (to Power)[1] ** [2]
Square Rootsqrt([2])
Round Upceiling([0])
Round Downfloor([0])
Averageaverage({[1], [2], [2], [3], [4], [7], [9]})
Sumsum({[1], [2], [2], [3], [4], [7], [9]})
Countcount({[1], [2], [2], [3], [4], [7], [9]})
Minmin({[1], [2], [2], [3], [4], [7], [9]})
Maxmax({[1], [2], [2], [3], [4], [7], [9]})
Random Numberrandomn(10)
Updated on January 11, 2024

Was this article helpful?

Related Articles