@GTEQDEC

The GTEQDEC function takes two or more decimal number parameters, comparing the second through the last parameters to the first, returning true if the first parameter is greater than or equal to all subsequent parameters. If any other parameter is found to be greater than the first, the function will return false. It will not evaluate any subsequent parameters. If only a single parameter is provided, this function will always return true.

Parameters

@GTEQDEC (Decimal 1 [, ..., Decimal N])
Decimal 1
Required decimal number parameter, contains the value to which all other parameters will be compared.
Decimal N
Optional decimal number parameter(s), each containing a value to be compared against Decimal 1. If Decimal 1 is less than this parameter, the function returns false and will not evaluate any subsequent parameters. If Decimal 1 is greater than or equal to this parameter, the function will continue to evaluate any additional parameters, or return true if no other parameters are provided.

Supported Return Types

Boolean