EQUALS
Checks if objects are equal. If the objects are integer based then the values returned will be 1 = true
or 0 = false
.
Syntax
bool EQUALS(object a, object b)
bool EQUALS(string a, string b)
bool EQUALS(string a, string b, bool ignoreCase)
Example
EQUALS("Apples", "Apples")
Returns true
as the case is ignored by default.
or
EQUALS("apples", "oranges")
Returns false
.
or
EQUALS(10,4)
Returns '0'.
You can apply this to your column data by entering the column names to be compared.