Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Problem with comma seperated list

I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Problem with comma seperated list

Save your file in .csv format from options in Save As.


-----Original Message-----
I have a excel sheet with a column of 2000 e-mail

addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Problem with comma seperated list

I have done this and it does not work when the addresses are rows in the
same column.

Any other ideas?


"Serkan" wrote in message
...
Save your file in .csv format from options in Save As.


-----Original Message-----
I have a excel sheet with a column of 2000 e-mail

addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


.



  #4   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Problem with comma seperated list

Try Copy/Paste Special/Transpose first so that the data is
in a single row rather than a column.
-----Original Message-----
I have done this and it does not work when the addresses

are rows in the
same column.

Any other ideas?


"Serkan" wrote in

message
...
Save your file in .csv format from options in Save As.


-----Original Message-----
I have a excel sheet with a column of 2000 e-mail

addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


.



.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Problem with comma seperated list

But there are 2000 rows !!

On Mon, 23 Feb 2004 04:24:17 -0800,
wrote:

Try Copy/Paste Special/Transpose first so that the data is
in a single row rather than a column.
-----Original Message-----
I have done this and it does not work when the addresses

are rows in the
same column.

Any other ideas?


"Serkan" wrote in

message
.. .
Save your file in .csv format from options in Save As.


-----Original Message-----
I have a excel sheet with a column of 2000 e-mail
addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


.



.


Steve


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Problem with comma seperated list

Yes... So what do I do? =)



"Steve Walton" wrote in message
...
But there are 2000 rows !!

On Mon, 23 Feb 2004 04:24:17 -0800,
wrote:

Try Copy/Paste Special/Transpose first so that the data is
in a single row rather than a column.
-----Original Message-----
I have done this and it does not work when the addresses

are rows in the
same column.

Any other ideas?


"Serkan" wrote in

message
.. .
Save your file in .csv format from options in Save As.


-----Original Message-----
I have a excel sheet with a column of 2000 e-mail
addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw


.



.


Steve



  #7   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Problem with comma seperated list

Save it as a csv file, which is an option in the Save dialog box.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Siw H. Thorslund" wrote in message
...
I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw




  #8   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 268
Default Problem with comma seperated list

Click on <Save as
In <Save as type scroll down until you get to <CSV OS2 or MS-DOS (*.CSV)
Click on <Save

Regards.

Bill Ridgeway
Computer Solutions
"Siw H. Thorslund" wrote in message
...
I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw




  #9   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Problem with comma seperated list

I know about that solution. Done that...

But it does not save it with commas when all the data is in a column, not in
rows....

Any idea to solve this? =)



"Bill Ridgeway" wrote in message
news:JFr_b.273$lj3.260@newsfe1-win...
Click on <Save as
In <Save as type scroll down until you get to <CSV OS2 or MS-DOS (*.CSV)
Click on <Save

Regards.

Bill Ridgeway
Computer Solutions
"Siw H. Thorslund" wrote in message
...
I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw






  #10   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default Problem with comma seperated list

You want 2000 email addresses on one line? Each separated by a comma?

If yes, then you could use a helper column:
Put =A1 in cell B1
Put =B1&","&A2 in cell B2

Drag down. It'll build a Christmas tree look. Each cell getting wider than the
one above it.

Now copy that last cell and paste into notepad (or your favorite text editor)
and save it from there.



"Siw H. Thorslund" wrote:

I know about that solution. Done that...

But it does not save it with commas when all the data is in a column, not in
rows....

Any idea to solve this? =)

"Bill Ridgeway" wrote in message
news:JFr_b.273$lj3.260@newsfe1-win...
Click on <Save as
In <Save as type scroll down until you get to <CSV OS2 or MS-DOS (*.CSV)
Click on <Save

Regards.

Bill Ridgeway
Computer Solutions
"Siw H. Thorslund" wrote in message
...
I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw





--

Dave Peterson



  #11   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.newusers,microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Problem with comma seperated list

Thank you for that answer.
You just saved me for a LOT of work.. =)


"Dave Peterson" wrote in message
...
You want 2000 email addresses on one line? Each separated by a comma?

If yes, then you could use a helper column:
Put =A1 in cell B1
Put =B1&","&A2 in cell B2

Drag down. It'll build a Christmas tree look. Each cell getting wider

than the
one above it.

Now copy that last cell and paste into notepad (or your favorite text

editor)
and save it from there.



"Siw H. Thorslund" wrote:

I know about that solution. Done that...

But it does not save it with commas when all the data is in a column,

not in
rows....

Any idea to solve this? =)

"Bill Ridgeway" wrote in message
news:JFr_b.273$lj3.260@newsfe1-win...
Click on <Save as
In <Save as type scroll down until you get to <CSV OS2 or MS-DOS

(*.CSV)
Click on <Save

Regards.

Bill Ridgeway
Computer Solutions
"Siw H. Thorslund" wrote in message
...
I have a excel sheet with a column of 2000 e-mail addresses.
How can I export this to a comma separated list?

Thanks... =)

Siw





--

Dave Peterson



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
List cell values seperated by comma if criteria met Mike Pearson[_2_] Excel Worksheet Functions 2 June 2nd 07 10:31 PM
Comma Seperated File Ricardo0303 Excel Worksheet Functions 2 April 10th 07 04:45 PM
comma seperated file import The sun Excel Discussion (Misc queries) 0 January 10th 07 06:37 AM
How to split a value seperated by comma? Ticktockman Excel Discussion (Misc queries) 2 March 23rd 06 04:20 PM
Importing Comma Seperated Text Please Help ? Byron Excel Discussion (Misc queries) 1 August 16th 05 10:36 AM


All times are GMT +1. The time now is 02:46 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"