Merging columns...

M

Mike

I am trying to create a text file of email addresses.
I have exported my addressbook from Outlook & deleted all the info I don't
want & am left with 3 columns, First name, Last name & Email address.
I would like for them to wind up in a text file following the format
"FirstName LastName" <[email protected]>
Complete with the quotation marks & greater than, less than symbols.
Any advice appreciated...
 
D

Dave Peterson

=char(34) & a1 & " " & b1 & char(34) & " <" & c1 & ">"

char(34) is the double quote character.
 
M

Mike

It works in the 1st row, but that's it.
What do you mean by "drag down the rows that you need"?
I did mention that I was excel-illiterate, didn't I?
Thanks for your patience...
 
M

Mike

Thank you!

Dave Peterson said:
Take a look at Debra's site.

She has pictures to show how to drag the formula down the column to fill
the
cells under the original cell.
 
Top