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

Div

  • Dark
    Light
  • PDF

Article Summary

Divides the first number parameter with the second one, truncating any decimal points and returning an integer.|

Function signature

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

Examples

FormulaReturn value
DIV(4, 4)1
DIV(4, 2)2
DIV(4, 0.03)133

Was this article helpful?

What's Next