Displaying First Chars of Words in a Cell?

joezeppy

Board Regular
Joined
Feb 7, 2005
Messages
72
Hi,

I have a column of words (company names) and I'd like to display the first character of each word in the name in the next column. The idea is to evaluate and compare the initials made up in each of these names.

So the idea is to take column A and produce column B as below:

ALMOND BOARD OF CALIFORNIA ABOC
ALTRIA GROUP AG
AMERICAN AIRLINES AA
AMERICAN ARBITRATION ASSOCIATION AAA
AMERICAN EXPRESS COMPANY AEC
AMERICAN FAMILY INSURANCE AFI
AMERICAN HONDA MOTOR CO AHMC
AMERICAN LICORICE AL
AMERIPRISE FINANCIAL AFI
AMTRAK NATIONAL RAILROAD PASSENGER CORP ANRP

Any easy formula solution? Thanks in advance.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Here's one possible solution: (modified from another forum)

PHP:
=LEFT(A1)&MID(A1,FIND(" ",A1&"  ")+1,1)&MID(A1,FIND("^^",SUBSTITUTE(A1,"  ","^^",2)&"^^")+1,1)&MID(A1,FIND("^^",SUBSTITUTE(A1,"  ","^^",3)&"^^")+1,1)
This will do three words, if you need a fourth add:

PHP:
&MID(A1,FIND("^^",SUBSTITUTE(A1,"  ","^^",4)&"^^")+1,1)
Where A1 is the target cell.

Cheers
Chris
 
Upvote 0

Forum statistics

Threads
1,224,591
Messages
6,179,768
Members
452,940
Latest member
rootytrip

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top