ISONORAFTER

ISONORAFTER A boolean function that emulates the behavior of a ‘Start At’ clause and returns true for a row that meets all of the condition parameters.

This function takes a variable number of triples, the first two values in a triple are the expressions to be compared, and the third parameter indicates the sort order. The sort order can be ascending (default) or descending.

Based on the sort order, the first parameter is compared with the second parameter. If the sort order is ascending, the comparison to be done is first parameter greater than or equal to second parameter. If the sort order is descending, the comparison to be done is second parameter less than or equal to first parameter.


Syntax

ISONORAFTER(scalar_expression, scalar_expression[, sort_order [, scalar_expression, scalar_expression[, sort_order]]…)

Parameters

Scalar expression – Any expression that returns a scalar value like a column reference or integer or string value. Typically the first parameter is a column reference and the second parameter is a scalar value.

Sort order – (optional) The order in which the column is sorted. Can be ascending (ASC) or descending (DEC). By default the sort order is ascending.

Return Value

True or false.


Reference Data

https://docs.microsoft.com/en-us/dax/dax-function-reference

DAX Functions / Information Functions / ISONORAFTER