Skip to main content

ENDSWITH

Determine if a string value ends with a letter or phrase

Example Usage

ENDSWITH("ABC123", "3") -> true
ENDSWITH("ABC123", "23") -> true
ENDSWITH("ABC123", "7") -> false

Overview

Function signature
ENDSWITH(value, phrase)

Category
Logical

Return data type
bool

Arguments

NameDataTypeList Options                          Description
valuestringThe string to search at the end for phrase
phrasestringThe character or phrase to search for at the end of value