EVEN DAX Function

The EVEN function returns number rounded up to the nearest even integer.

DAX Syntax EVEN(number)

The number parameter is the value to round.

Example: Create a calculated column.

DAX

Even Column = EVEN('Sheet1'[10th Marks])
EVEN dax function