Skip to main content

ENDSWITH

Returns whether the string ends with the specified search text.

Syntax

bool ENDSWITH(string searchText, string value)

Inputs

ObjectData TypeDescription
searchTextStringThe string to find.
valueStringThe string to find it in.

Example

ENDSWITH("ing",ProductName)

Will return true for all products in the ProductName column ending with "ing" and false for those that do not.