A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
MOD() does not divide one number by another. It return the remainder after the two numbers have been divided. QUOTIENT() returns the integer portion of a division formula. With 117,480 in A1 and 41 in A2 try,
=QUOTIENT(A1,A2)
... which returns 2865. The remainder is produced by MOD()
=MOD(A1,A2)
... which returns 15.
You would have to put them together and do some math like this,
=QUOTIENT(A1,A2) + MOD(A1,A2)/A2
to get 2865.365854. Much easier to simply use
=A1/A2
| QUOTIENT function | Returns the integer portion of a division |
|---|---|
| MOD function | Returns the remainder from division |