Returns the remainder after a number is divided by a divisor.
この関数は Google スプレッドシートでも Excel と同じように機能します。構文も引数も同じです。
MOD(number, divisor)The MOD function calculates the remainder of a division operation. The result has the same sign as the divisor.
=MOD(10, 3)結果: 1
10 divided by 3 is 3 with a remainder of 1.
=MOD(15, 4)結果: 3
15 divided by 4 is 3 with a remainder of 3.
The MOD function will return a #DIV/0! error.