Skip to main content
Returns True if the integer is odd, False if it is even. Category: math Syntax:
IsOdd([number_column])
Returns: BooleanColumn Context Filtering: ✓ Yes

Parameters

NameTypeRequiredDescription
valueinteger|column✓ YesThe number or column of numbers to test.
Allowed Column Types: INT

Validation

  • Minimum parameters: 1
  • Maximum parameters: 1

Examples

IsOdd(2)
Tests whether 2 is odd. Result: false
IsOdd(3)
Tests whether 3 is odd. Result: true
  • IsEven - Test if a number is even
Last modified on March 13, 2026