> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://help.sigmacomputing.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://help.sigmacomputing.com/_mcp/server.

# EndsWith

Returns True if a string ends with a substring.

## Usage

`EndsWith(string, substring)`

**string** (required) The text to search.

**substring** (required) The text to search with.

EndsWith is case-sensitive. To create a search that is not case-sensitive, combine EndsWith with [Lower](/docs/lower).

## Example

`EndsWith("Jane Doe", "oe")`

* Returns TRUE

`EndsWith(Lower("JANE DOE"), "oe")`

* Returns TRUE

## Related resources

* [Contains](/docs/contains)
* [Find](/docs/find)
* [StartsWith](/docs/startswith)