Truncating a cell's content into a few cells.

trillicomm

Board Regular
Joined
Feb 24, 2002
Messages
101
[cell A1]:
abase adj. To lower in position, estimation, or the like; degrade.
[cell A2]:
abbess n. The lady superior of a nunnery.
[cell A3]:
abbey n. The group of buildings which collectively form the dwelling-place of a society of monks or nuns.
[cell A4]:
abbot n. The superior of a community of monks.

Hi, I have 4 vertical cells above to represent a list of SAT words (5000 cells). Each cell is identical in format as in: 'word(space)type(period)definition(period)'. I need to separate into 3 columns. For ex: [cell A1] will be broken apart into A1, B1, and C1 with "abase", "v.", and "To lower in position, estimation, or the like; degrade.", respectively.

PHPBB forum looks very nice Juan!
Thank you.
Tan Le
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
On 2002-02-25 06:52, trillicomm wrote:
[cell A1]:
abase adj. To lower in position, estimation, or the like; degrade.
[cell A2]:
abbess n. The lady superior of a nunnery.
[cell A3]:
abbey n. The group of buildings which collectively form the dwelling-place of a society of monks or nuns.
[cell A4]:
abbot n. The superior of a community of monks.

Hi, I have 4 vertical cells above to represent a list of SAT words (5000 cells). Each cell is identical in format as in: 'word(space)type(period)definition(period)'. I need to separate into 3 columns. For ex: [cell A1] will be broken apart into A1, B1, and C1 with "abase", "v.", and "To lower in position, estimation, or the like; degrade.", respectively.

PHPBB forum looks very nice Juan!
Thank you.
Tan Le

Tan,

In B2 enter:

=LEFT(A2,SEARCH(" ",A2)-1)

In C2 enter:

=TRIM(MID(A2,SEARCH(" ",A2),SEARCH(".",A2)-SEARCH(" ",A2)))

In D2 enter:

=TRIM(SUBSTITUTE(A2,B2&" "&C2&".",""))

where A2 houses the first entry you want to split.

Aladin
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,399
Members
448,958
Latest member
Hat4Life

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