STRIPCOMPANYSUFFIX

Description

Removes all trailing punctuation and common words used at the end of company names such as; Inc, Incorporated, Corp, Corporation, Co, Company, Ltd, etc.

Syntax

STRIPCOMPANYSUFFIX ( TextSourceField )

Parameter Description
TextSourceField The string containing the company name.

Remarks

Use this function with the STARTSWITH operator in the Lookup Criteria window for better company matching.

See the table below for the list of suffixes that will be removed by the function.

Examples

This function returns "The Joseph & Joseph":

STRIPCOMPANYSUFFIX("The Joseph & Joseph Corporation")

This function returns "TeleTronics":

STRIPCOMPANYSUFFIX("TeleTronics Co., Inc.")

How it Works

The STRIPCOMPANYSUFFIX function returns the root company name by removing trailing characters such as comma or period, and trailing words such as Inc or Corporation.

The function algorithm processes:

The end result is a string with all trailing commas, periods, ampersands, apostrophes, dashes, spaces and company suffixes removed.

See also

PARSE

PARSEADDR

PARSENAME

STRIPCOMPANY