DivideRoundDown

Divides one number (dividend) by another (divisor) and returns a numeric result.

Table 1. Input Properties
Property Type Description
Dividend Number The number to be divided by another number (divisor).
Divisor Number The number to divide another number (dividend).
RoundingDecimalPositions Number Rounds the result "down" if roundingDecimalPositions is not null and >= 0. An example would be rounding 23.5 to 23.
  • If dividend is null, then returns null.
  • If divisor is null, then returns dividend.