Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / April 2007

Tip: Looking for answers? Try searching our database.

How do I add commas after each text in each cell?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
ChrishBiz - 20 Apr 2007 00:54 GMT
I have a list of about 23,000 emails. I need to make an E-mail blast. The
only way I know how to do that is by adding a comma at the end of each one.
How can I save the hassle of inserting a comma manually into each cell?
CLR - 20 Apr 2007 01:17 GMT
In an adjacent helper column  (column B), put this in B1 and copy
down........

=A1&","

Then do Copy > PasteSpecial > Values on that column to get rid of the
formulas......

Vaya con Dios,
Chuck, CABGx3

> I have a list of about 23,000 emails. I need to make an E-mail blast. The
> only way I know how to do that is by adding a comma at the end of each one.
> How can I save the hassle of inserting a comma manually into each cell?
T. Valko - 20 Apr 2007 04:04 GMT
Here's a short macro that will do this:

Sub AddComma()

Dim cell As Range
   For Each cell In Selection
       If cell.Value <> "" Then
       cell.Value = cell.Value & ","
       Else: cell.Value = cell.Value
       End If

   Next cell

   End Sub

Place the code in a general module.

Select the range of cells in question then run the macro.

Biff

>I have a list of about 23,000 emails. I need to make an E-mail blast. The
> only way I know how to do that is by adding a comma at the end of each
> one.
> How can I save the hassle of inserting a comma manually into each cell?

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.