Exists Function

Relevance:
Variable occurrences within this function do not contribute towards the overall relevance of those variables.
Consequently, such variables must occur in at least one other context for them to be considered relevant.
Description:
At least one repeated value is known and true.
Returns:
Boolean
Parameter:
Parameter
Data Type
Description
1
Boolean
The repeated expression.
Examples:
In the following examples, consider there are two companies named Alpha Holdings, Beta Construction. Consider also that the directors of the first company are John (male aged 40), Mary (female aged 30), Eva (female aged 30) and Michael (male aged 35) and that the directors of the second company are Ted (male aged 35) and Anthony (male aged 30).
Expression
Result
[
Repeat 2
{Exists( DirectorGender Is "Female" )}]
true
for the first company
, and
false
for the second company
{Exists( DirectorAge IsMoreThan 30 and DirectorAge IsLessThan 40 )}
true
{Exists( DirectorAge IsLessThan 30 or DirectorAge IsMoreThan 40 )}
false

Related content