Div
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Div
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- 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
Parameter | Description |
---|---|
Dividend | Dividend |
Divisor | Divisor |
Examples
Formula | Return value |
---|---|
DIV(4, 4) | 1 |
DIV(4, 2) | 2 |
DIV(4, 0.03) | 133 |
Was this article helpful?