I need to replace the values in cells that may contain certain values. Lets say I have the following values listed in the A column.
Trucking Inc.
New Truck Inc
ABV Trucking Inc, LLC
I want to be able to replace the following with a corresponding value. The following is a list contains in 2 columns. 1 Column is the From and the other is the To field.
From To
" Inc." ""
" Inc" ""
" Inc, " ""
" LLC" ""
The result should be:
Trucking
New Truck
ABV Trucking
Hope I am making sense here.

ReplaceCtrl + GorSubstitutefunction?