EXCEL join two cell one with name to email

zonecrash

BANNED
Joined
Sep 30, 2009
Messages
72
Reaction score
70
EXCEL join two cell one with name to email


B1 has the name

and

In C1 I want to complete the cell as an email l



Example;
B1 --- williamDavis

C1 --- join B1 to @yahoo.com - RESULTS of "C1" to be [email protected]


I have tried in C1

[email protected]
[email protected]


NO luck


Note;
I am using openoffice if that matters. Spreadsheet.
 
it work ... now I am almost there... I have a few more issus
It may be foolish for you but i am settting up a imacro for regist-

My next step would be for posting

I hope I can pm you something?
 
Try this:

=concatenate(B1,"@yahoo.com")

This is an Excel function. Haven't tried it in OpenOffice Spreadsheet.

-SDT
 
I don't know how to do that with openoffice, in excel you need to type:

=CONCATENATE(A1,B1)

hope it helps
 
thank you ... thanks you ...

With the help, I have resolved the issue

great suggestons
 
or an alternate... copy the contents of the cells b1 and c1 (columns), then paste that into notepad ++. you will notice a space between the name and @domain.com. use find and replace to find your space and delete! the output is the same.
 
or an alternate... copy the contents of the cells b1 and c1 (columns), then paste that into notepad ++. you will notice a space between the name and @domain.com. use find and replace to find your space and delete! the output is the same.

I have been doing this for the past couple of months on a daily basis.... Thought that nobody else was doing it tht way until I read ur post..lol
 
Back
Top