Google Sheets
ISODD function in Google Sheets
Checks whether the provided value is odd.
=ISODD(value)ISODD syntax and parameters
One argument, one required.
- valueanyRequired
The value to be verified as odd. ISODD returns TRUE if value is an odd integer or a reference to a cell containing an odd integer, and FALSE otherwise.
ISODD examples
Formulas you'll actually reuse.
Is the row's ID number odd?
=ISODD(B2)Result
FALSEEvery other row for banding — pair with conditional formatting:
=IF(ISODD(ROW()), "shade", "")Result
"shade"
ISODD in Excel
Same name — your formula ports as-is.
Try ISODD in the playground
Edit the example — nothing to install.
Preloaded with the ISODD formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- ABSReturns the absolute value of a number.MathExcel
- ACOSReturns the inverse cosine of a value, in radians.MathExcel
- ACOSHReturns the inverse hyperbolic cosine of a number.MathExcel
- ACOTReturns the inverse cotangent of a value, in radians. .MathExcel
- ACOTHReturns the inverse hyperbolic cotangent of a value, in radians. Must not be between -1 and 1, inclusive..MathExcel
- ASINReturns the inverse sine of a value, in radians.MathExcel