Changing Unique Text within Cell

digitap

New Member
Joined
May 1, 2013
Messages
7
If you have data beginning with A2 then in B2 enter this formula, then drag down

Code:
=SUBSTITUTE(A2,LEFT(A2,FIND("@",A2)),"Info@")

where A2 = test@test.com
 
Last edited:
Upvote 0
Got me thinking , :cool:

Another alternative , using just two function ;)

Code:
=REPLACE(A2,1,SEARCH("@",A2),"Info@")
 
Upvote 0
Hi,

Im not a excel person so need talking through it really. Do i create a new empty column next to all the email addresses and paste that formula into it ?
 
Upvote 0
Hi,

Im not a excel person so need talking through it really. Do i create a new empty column next to all the email addresses and paste that formula into it ?


Yes. Example shown above assumes you have data in column A.
 
Upvote 0
Ok it looks like its trying to do it but the format is staying the same as =REPLACE(A1,1,FIND("@",A1),"info@") when i hit enter it stays like that instead of changing to info@
 
Upvote 0
In Excel 2007 /2010

1)select the column (which contains formula) and right click > format > choose general

2)Make sure under formula tab > calculation options > Automatic is checked.
 
Upvote 0

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