CEILING DAX Function

The CEILING function rounds a number up, to the nearest integer or to the nearest multiple of significance, and returns the number rounded as specified.

DAX Syntax CEILING(Number, Significance)

The function has the following parameters:

Example: Create a calculated column.

DAX

Ceiling column = CEILING('Table Decimals'[Decimals], 0.4)
CEILING dax function