ISEVEN DAX Function

The ISEVEN function returns TRUE if number is even, or FALSE if number is odd.

DAX Syntax ISEVEN(number)

The parameter number is the value to test. If the number is not an integer, it is truncated.

Example:

DAX

Check ISEven column = ISEVEN('Sheet1'[10th Marks])
ISEVEN dax function