ODD DAX Function

The ODD function returns number rounded up to the nearest odd integer.

DAX Syntax ODD(number)

The parameter number is the required. It is the value to round.

Example: Create a calculated column.

DAX

Odd column = ODD('Sheet1'[10th Marks])
ODD dax function