Divide
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Divide

  • Dark
    Light
  • PDF

Article Summary

Divides the first number with the second one, returning an integer or a decimal number accordingly. Equivalent to the the / operator.

Function signature

DIVIDE(dividend: Number, divisor: Number) => Number
ParameterDescription
DividendDividend
DivisorDivisor

Examples

FormulaReturn value
DIVIDE(4, 2)2
DIVIDE(4, 0.03)133.33333333
DIVIDE(-4, 3)-1.33333333
DIVIDE(0, 5)0

Was this article helpful?

What's Next