Please Help with a TEXT formula

srhino

New Member
Joined
Apr 14, 2008
Messages
9
I really need some help with a formula I am importing from the web and when the information comes in it comes in a text string like below...

Jim Owens (10)

I would like to use a formula to change the incoming names to just show the first letter of the first name and then a period and the full last name. it would output like the following

J.Owens

**I can't text to columns the information because it refreshes every 60 seconds**

Thanks In Advance
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Try

=LEFT(A1)&". "&MID(A1,FIND(" ",A1)+1,FIND(" ",SUBSTITUTE(A1," ","~",1))-FIND(" ",A1))
 
Upvote 0
Hi,

Do the Names always have (10) at the end? Do you want to keep the (10) if they do?

If they don't then:

=LEFT(A1,1)&"."&MID(A1,FIND(" ",A1,1)+1,LEN(A1)-FIND(" ",A1,1))
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,259
Members
452,901
Latest member
LisaGo

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