website logo
Navigate through spaces
ChartHop documentation
⌘K
ChartHop Help Center
Getting around in ChartHop
ChartHop for Employees
Implementing ChartHop
ChartHop for Administrators
Carrot reference
ChartHop for Developers
Partners
Release notes
Resources
Docs powered by archbee 
website logo

= (equals)

Returns true when the value of a given field and a given expression are the same.

Syntax

expression1 = expression2

Sample usage

tenure=3 returns all records where tenure is 3.

department="engineering" returns all records where department is engineering.

startDate=('2021-01-01') returns all records where startDate is 01/01/2021.

Supported data types

  • Evaluated expressions can be of any type.
  • String comparisons are case-insensitive.
  • If either side of the comparison is a List then the comparison will return true if there are any values in common.

See also

  • : (match)
  • != (not-equals)
  • ?: (elvis)



Updated 03 May 2023
Did this page help you?
Yes
No
PREVIOUS
% (modulus)
NEXT
!= (not-equals)
Docs powered by archbee 
TABLE OF CONTENTS
Syntax
Sample usage
Supported data types
See also