Tech Note: the formula is pretty straightforward, and uses two built-in functions. • The mod()
function performs a modulo operation, whose result is the remainder of a division.
• The row()
function returns the current row index (first row = 1
, second row = 2
, etc.)
• We pass to the mod()
function two values (called "arguments") - the current row index (given to us by "row()
"), to be divided by the second argument, which is "2
".
• The first equal sign just tells Excel that the text is a formula to evaluate, not a value.
• The second equal sign tests if the remainder is equal to "1
".