DAX Information - ISODD function



Description

Returns TRUE if the given number is odd. Otherwise, FALSE.

DAX ISODD function is new in Excel 2016.

Syntax

ISODD (<number>) 

Parameters

Sr.No. Parameter & Description
1

number

The numeric value to test.

If the number is not an integer, it is truncated.

Return Value

TRUE or FALSE.

Remarks

If the number is non-numeric, DAX ISODD function returns the #VALUE! error.

Example

= ISODD (5) returns TRUE. 
= ISODD (2) returns FALSE. 
dax_functions_information.htm
Advertisements