Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
tommcbrny
 
Posts: n/a
Default Isolate text following a period (".")

Hello...I am trying to create a function that will populate a cell with the
first three text characters that follow a period (".") from a text string in
another cell. Can anyone tell me whether there is a function that will allow
me to do this?

Thanks,
Tom
  #2   Report Post  
JulieD
 
Posts: n/a
Default

Hi Tom

you can use
=MID(A1,SEARCH(".",A1)+1,3)

Regards
JulieD


"tommcbrny" wrote in message
...
Hello...I am trying to create a function that will populate a cell with
the
first three text characters that follow a period (".") from a text string
in
another cell. Can anyone tell me whether there is a function that will
allow
me to do this?

Thanks,
Tom



  #3   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

=MID(A1,FIND(".",A1)+1,3)

If A1 might not contain a ".":

=IF(COUNTIF(A1,"*.*"),MID(A1,FIND(".",A1)+1,3),"")




In article ,
tommcbrny wrote:

Hello...I am trying to create a function that will populate a cell with the
first three text characters that follow a period (".") from a text string in
another cell. Can anyone tell me whether there is a function that will allow
me to do this?

Thanks,
Tom

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
Read Text File into Excel Using VBA Willie T Excel Discussion (Misc queries) 13 January 8th 05 12:37 AM
How do I rotate a text box Kent Charts and Charting in Excel 2 December 17th 04 12:13 AM
how to hyperlink text to a cell steve New Users to Excel 1 December 14th 04 08:21 PM
Macro or Function to make text size to suite text Length? lbbss Excel Discussion (Misc queries) 4 December 14th 04 07:53 PM
Text Boxes Graham Parkinson Excel Discussion (Misc queries) 2 December 2nd 04 05:01 PM


All times are GMT +1. The time now is 12:59 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"