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.
Doctor |
Dr |
The |
Agency | Gmbh | PA |
and | Group | PC |
Assn | Hotel | Pharmacy |
Assoc | Hotels | PLC |
Associates | Inc | PLLC |
Association | Incorporated | Restaurant |
Bank | International | SA |
BV | Intl | Sales |
Co | Limited | Service |
Comp | LLC | Services |
Company | LLP | Store |
Corp | LP | Svcs |
Corporation | Ltd | Travel |
DMD | Manufacturing | Unlimited |
Enterprises | Mfg |
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