Formatting titles in cells/columns to be "title, The"

MikeyB

New Member
Joined
Jun 16, 2011
Messages
3
Anyone know how to format cells/columns to always show a title be formatted looking like.... "Title, The"?? For example, the movie title "The Replacements" or music artists "The Beatles" to automatically format to look like "Replacements, The" and "Beatles, The". My intentions are to make lists in alphabetical order by title or artist without having these show up under the letter "T" alphabeitically. I am going to import a list to excel to avoid having to retype thousands of titles(which have "The" in front) and then would like to re-format them as "title, The".:confused:
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi and welcome

Try

=IF(LEFT(A2, 3)="The", MID(A2, 5, 255)&", The", A2)
 
Upvote 0
That kind of worked. It only worked for that particluar cell and it duplicated the title... so I have "the beatles" and also "beatles, the". Anyway to make it work for the whole column and without duplicating?
 
Upvote 0
Excel Workbook
AB
1The BeatlesBeatles, The
2The ShiningShining, The
3RamboRambo
4RockyRocky
Sheet2
Excel 2007
Cell Formulas
RangeFormula
B1=IF(LEFT(A1, 3)="The", MID(A1, 5, 255)&", The", A1)
 
Upvote 0
Still not quite right,so maybe Im doing something wrong...Im kind of a novice at excel so sorry for the trouble.
So if I open a blank excel sheet, highlight and copy info from say iTunes and paste it into the blank sheet... then what should I do next?
 
Upvote 0

Forum statistics

Threads
1,222,828
Messages
6,168,484
Members
452,193
Latest member
Arlochorim

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