Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
My Excel data contains both commas and tabs so I need to change the export
file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ron,
Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Earl,
I tried the Text Write Program (nice macro) but apparently trying to protect the cells with a "~" delimitor doesn't solve the problem as I thought it would. Here's the real problem: some clients made lists within the cells, using ALT-ENTER to change lines. This is where the parsing screws up. Is there a way to perform a SEARCH/REPLACE to get rid of the ALT-ENTER invisible characters? "Earl Kiosterud" wrote: Ron, Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select your range to change
Edit|replace what: ctrl-j (same as alt-0010 on the number keypad = alt-enter) with: whateveryouwant (or leave blank or a space character) replace all PhillyRon wrote: Earl, I tried the Text Write Program (nice macro) but apparently trying to protect the cells with a "~" delimitor doesn't solve the problem as I thought it would. Here's the real problem: some clients made lists within the cells, using ALT-ENTER to change lines. This is where the parsing screws up. Is there a way to perform a SEARCH/REPLACE to get rid of the ALT-ENTER invisible characters? "Earl Kiosterud" wrote: Ron, Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dave,
The FIND window in FIND/REPLACE won't accept CONTROL-J (the courser doesn't move and it doesn't find anything). Is that what you wanted to search for? PhillyRon "Dave Peterson" wrote: Select your range to change Edit|replace what: ctrl-j (same as alt-0010 on the number keypad = alt-enter) with: whateveryouwant (or leave blank or a space character) replace all PhillyRon wrote: Earl, I tried the Text Write Program (nice macro) but apparently trying to protect the cells with a "~" delimitor doesn't solve the problem as I thought it would. Here's the real problem: some clients made lists within the cells, using ALT-ENTER to change lines. This is where the parsing screws up. Is there a way to perform a SEARCH/REPLACE to get rid of the ALT-ENTER invisible characters? "Earl Kiosterud" wrote: Ron, Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If it doesn't find anything, then it sounds as if your spurious characters
aren't CHAR(0010). Look at =CODE(MID(A1,NNN,1)), where NNN would be 10 if you're trying to identify the 10th character in cell A1. -- David Biddulph "PhillyRon" wrote in message ... Dave, The FIND window in FIND/REPLACE won't accept CONTROL-J (the courser doesn't move and it doesn't find anything). Is that what you wanted to search for? PhillyRon "Dave Peterson" wrote: Select your range to change Edit|replace what: ctrl-j (same as alt-0010 on the number keypad = alt-enter) with: whateveryouwant (or leave blank or a space character) replace all PhillyRon wrote: Earl, I tried the Text Write Program (nice macro) but apparently trying to protect the cells with a "~" delimitor doesn't solve the problem as I thought it would. Here's the real problem: some clients made lists within the cells, using ALT-ENTER to change lines. This is where the parsing screws up. Is there a way to perform a SEARCH/REPLACE to get rid of the ALT-ENTER invisible characters? "Earl Kiosterud" wrote: Ron, Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes it will. It just looks like it doesn't.
If you do Edit|Find then type: asdf(ctrl-j)qwer you'll see that it looks weird. If it doesn't replace those funny characters, then the users aren't using alt-enter. But if the edit|Find doesn't find anything, you may want to use Chip Pearson's CellView utility to see what that character is. http://www.cpearson.com/excel/CellView.htm PhillyRon wrote: Dave, The FIND window in FIND/REPLACE won't accept CONTROL-J (the courser doesn't move and it doesn't find anything). Is that what you wanted to search for? PhillyRon "Dave Peterson" wrote: Select your range to change Edit|replace what: ctrl-j (same as alt-0010 on the number keypad = alt-enter) with: whateveryouwant (or leave blank or a space character) replace all PhillyRon wrote: Earl, I tried the Text Write Program (nice macro) but apparently trying to protect the cells with a "~" delimitor doesn't solve the problem as I thought it would. Here's the real problem: some clients made lists within the cells, using ALT-ENTER to change lines. This is where the parsing screws up. Is there a way to perform a SEARCH/REPLACE to get rid of the ALT-ENTER invisible characters? "Earl Kiosterud" wrote: Ron, Try the Text Write Program at http://www.smokeylake.com/excel/text_write_program.htm -- Earl Kiosterud www.smokeylake.com Note: Top-posting has been the norm here. Some folks prefer bottom-posting. But if you bottom-post to a reply that's already top-posted, the thread gets messy. When in Rome... ----------------------------------------------------------------------- "PhillyRon" wrote in message ... My Excel data contains both commas and tabs so I need to change the export file.csv delimator to "~". How can I do this? (I tried Excel's suggestion to go into the PC's control panel and change the txt list separator to ~ but that didn't work.) RonLev Philly -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
export as csv | Setting up and Configuration of Excel | |||
Export XML | Excel Worksheet Functions | |||
CSV export help | Excel Discussion (Misc queries) | |||
Export XML | Excel Discussion (Misc queries) | |||
export access to excel. change access & update excel at same time | Excel Discussion (Misc queries) |