WEBcnx 2023.2 is out now bringing with it a host of new features and performance enhancements. Read more.

Open navigation

EQUALS Function

Applies from Version:WEBcnx 2024.1Applies to Version:


Description

The EQUALS function checks if two or more parameters have equal values.


Syntax 

EQUALS(value1, value2, value3...)


The EQUALS function takes the following parameters:


  • value1 Required - The first value to compare
  • value2 Required - The second value to compare
  • value3, value4, value5, etc. Optional- Additional values to compare

Returns

A Boolean. True if all parameters are equal, false if not.


Remarks

  1. This will almost certainly return false if we mix and match different types (e.g. a number will never equal a string)


Examples 

ExpressionDescriptionResult
EQUALS(2, 1+1)Determines whether the 2=1+1True
EQUALS(3, 3+1)Determines whether 3=3+1False 
EQUALS(2, 1+1, 4/2)Determines whether 2=1+1 and 2=4/2 (and therefore whether 1+1=4/2)True
EQUALS(2, 1+1, 6/2)Determines whether 2=1+1 and 2=6/2 (and therefore whether 1+1=6/2)False  
EQUALS("2", 1+1)Determines whether the string "2" equals 1+1False (Strings cannot equal Numbers)

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.

You may like to read -