ISODD DAX Function
The ISODD function returns TRUE if the number is odd, or FALSE if number is even.
DAX Syntax ISODD(number)
The function has the parameter number, the value to test. If number is not an integer, it is truncated.
Example: Create a calculated column.
DAX
Check ISOdd column = ISODD('Sheet1'[10th Marks])