Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Sammy in Taiwan
 
Posts: n/a
Default Abbreviation for "Rear Derailleur" as "RD"

Can any one help me to make an abbreviation in excel file?

This is the example:
"Rear Derailleur" to "RD"
"Front Suspension Fork" to "FSF"

Thanks for your help!
  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

In what way, Sammy? You can just do a Find/Replace or create an Autocorrect
entry (in Word, if it's not available in Excel).
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"Sammy in Taiwan" <Sammy in wrote in
message ...
Can any one help me to make an abbreviation in excel file?

This is the example:
"Rear Derailleur" to "RD"
"Front Suspension Fork" to "FSF"

Thanks for your help!



  #3   Report Post  
Sammy in Taiwan
 
Posts: n/a
Default

Is there any function that I can use on excel for this job? precisely I
should say: make an acronym for it!

Anne, thanks for your response.

"Anne Troy" 來函:

In what way, Sammy? You can just do a Find/Replace or create an Autocorrect
entry (in Word, if it's not available in Excel).
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"Sammy in Taiwan" <Sammy in wrote in
message ...
Can any one help me to make an abbreviation in excel file?

This is the example:
"Rear Derailleur" to "RD"
"Front Suspension Fork" to "FSF"

Thanks for your help!




  #4   Report Post  
Anne Troy
 
Posts: n/a
Default

I'm sorry if I wasn't clear, Sammy. What do you mean "make an acronym"? What
will happen if we accomplish your goal? You'll type RD and the words Rear
Derailleur will appear? Sorry. :)
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"Sammy in Taiwan" wrote in message
...
Is there any function that I can use on excel for this job? precisely I
should say: make an acronym for it!

Anne, thanks for your response.

"Anne Troy" ??:

In what way, Sammy? You can just do a Find/Replace or create an

Autocorrect
entry (in Word, if it's not available in Excel).
*******************
~Anne Troy

www.OfficeArticles.com
www.MyExpertsOnline.com


"Sammy in Taiwan" <Sammy in wrote in
message ...
Can any one help me to make an abbreviation in excel file?

This is the example:
"Rear Derailleur" to "RD"
"Front Suspension Fork" to "FSF"

Thanks for your help!






  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default

Probably best to write a UDF

Function Acronyms(text)
Dim i As Long
Dim sTemp

If TypeName(text) = "Range" Then
If text.Count 1 Then
Exit Function
End If
End If

For i = 1 To Len(text)
If Mid(text, i, 1) Like "[A-Z]" Then
sTemp = sTemp & Mid(text, i, 1)
End If
Next i
Acronyms = sTemp
End Function


and use like

=Acronyms(A1)

--
HTH

Bob Phillips

"Sammy in Taiwan" <Sammy in wrote in
message ...
Can any one help me to make an abbreviation in excel file?

This is the example:
"Rear Derailleur" to "RD"
"Front Suspension Fork" to "FSF"

Thanks for your help!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Use a measurement abbreviation in cell with formula construction_secretary Excel Discussion (Misc queries) 4 June 9th 05 03:16 PM
spell out state name from an abbreviation julieb Excel Discussion (Misc queries) 2 May 19th 05 05:16 PM


All times are GMT +1. The time now is 05:18 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"