Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I want to use Excel to create codes using the 321 system.
B1 contains a book title. (eg French Lieutenant's Woman, The). A1 to have the first three letters of the first word, the first two letters of the second word and the first letter of the third word. (eg FreLiW). If somone could help me find a formula that will do this, I'd be very grateful indeed. DL |
#2
![]() |
|||
|
|||
![]()
One way:
=LEFT(TRIM(A1),3) & MID(Trim(A1), FIND(" ",TRIM(A1))+1,2) & MID(TRIM(A1), FIND("^", SUBSTITUTE(TRIM(A1)," ", "^", 2))+1,1) Note there's no error checking - if the cell contains less than three words, it will return an error. In article , "Mirsten Choiple" wrote: I want to use Excel to create codes using the 321 system. B1 contains a book title. (eg French Lieutenant's Woman, The). A1 to have the first three letters of the first word, the first two letters of the second word and the first letter of the third word. (eg FreLiW). If somone could help me find a formula that will do this, I'd be very grateful indeed. |
#3
![]() |
|||
|
|||
![]()
Many thanks for your help.
In the case of a title with only two words (eg Madam Bovary). The desired result would be (eg MadBo). Is that a possibility? DL "JE McGimpsey" wrote in message ... One way: =LEFT(TRIM(A1),3) & MID(Trim(A1), FIND(" ",TRIM(A1))+1,2) & MID(TRIM(A1), FIND("^", SUBSTITUTE(TRIM(A1)," ", "^", 2))+1,1) Note there's no error checking - if the cell contains less than three words, it will return an error. In article , "Mirsten Choiple" wrote: I want to use Excel to create codes using the 321 system. B1 contains a book title. (eg French Lieutenant's Woman, The). A1 to have the first three letters of the first word, the first two letters of the second word and the first letter of the third word. (eg FreLiW). If somone could help me find a formula that will do this, I'd be very grateful indeed. |
#4
![]() |
|||
|
|||
![]()
One way:
=LEFT(TRIM(A1),3)&IF(ISERR(FIND(" ",TRIM(A1))), "", MID(TRIM(A1),FIND(" ", TRIM(A1))+1,2) & IF((LEN(TRIM(A1))-LEN(SUBSTITUTE(A1," ","")))1, MID(TRIM(A1), FIND("^",SUBSTITUTE(TRIM(A1)," ","^",2))+1,1),"")) In article , "Mirsten Choiple" wrote: Many thanks for your help. In the case of a title with only two words (eg Madam Bovary). The desired result would be (eg MadBo). Is that a possibility? "JE McGimpsey" wrote in message ... One way: =LEFT(TRIM(A1),3) & MID(Trim(A1), FIND(" ",TRIM(A1))+1,2) & MID(TRIM(A1), FIND("^", SUBSTITUTE(TRIM(A1)," ", "^", 2))+1,1) |
#5
![]() |
|||
|
|||
![]()
Ten thousand thanks; it works beautifully.
DL "JE McGimpsey" wrote in message ... One way: =LEFT(TRIM(A1),3)&IF(ISERR(FIND(" ",TRIM(A1))), "", MID(TRIM(A1),FIND(" ", TRIM(A1))+1,2) & IF((LEN(TRIM(A1))-LEN(SUBSTITUTE(A1," ","")))1, MID(TRIM(A1), FIND("^",SUBSTITUTE(TRIM(A1)," ","^",2))+1,1),"")) In article , "Mirsten Choiple" wrote: Many thanks for your help. In the case of a title with only two words (eg Madam Bovary). The desired result would be (eg MadBo). Is that a possibility? "JE McGimpsey" wrote in message ... One way: =LEFT(TRIM(A1),3) & MID(Trim(A1), FIND(" ",TRIM(A1))+1,2) & MID(TRIM(A1), FIND("^", SUBSTITUTE(TRIM(A1)," ", "^", 2))+1,1) |
#6
![]() |
|||
|
|||
![]()
JE McGimpsey wrote...
One way: =LEFT(TRIM(A1),3)&IF(ISERR(FIND(" ",TRIM(A1))), "", MID(TRIM(A1),FIND(" ", TRIM(A1))+1,2) & IF((LEN(TRIM(A1))-LEN(SUBSTITUTE(A1," ","")))1, MID(TRIM(A1), FIND("^",SUBSTITUTE(TRIM(A1)," ","^",2))+1,1),"")) .... And another (a little redundancy goes a long way, or should that be a short way), =TRIM(LEFT(TRIM(A1),3)&MID(TRIM(A1),FIND(" ",TRIM(A1)&" ")+1,2) &MID(TRIM(A1),FIND(" ",SUBSTITUTE(TRIM(A1)," ","",1)&" ")+2,1)) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create a grading system in Office Excel? | New Users to Excel | |||
create a data entry form template in Excel 2003? | Excel Discussion (Misc queries) | |||
Create invoices from excel workbook | Excel Worksheet Functions | |||
How do I create a geographic map in Excel 2003? | Excel Worksheet Functions | |||
Is there a way to create a standard OHLC bar chart in Excel? | Charts and Charting in Excel |