Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Change Default Delimiters

Hello,

How do I change the default delimiters in Excel 2007? I want to add ';' and
',' to the default delimiters instead of selecting it every time I import
files.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Change Default Delimiters

You can do that in the code on my website
See reply in your other thread

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
Hello,

How do I change the default delimiters in Excel 2007? I want to add ';' and
',' to the default delimiters instead of selecting it every time I import
files.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Change Default Delimiters

I don't get it. I haven't programmed since C++ in college. Is there a way for
me to adjust the defaults in Excel so that it will be in effect for all
imports as well as new workbooks or do I have to use code?

"Ron de Bruin" wrote:

You can do that in the code on my website
See reply in your other thread

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
Hello,

How do I change the default delimiters in Excel 2007? I want to add ';' and
',' to the default delimiters instead of selecting it every time I import
files.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Change Default Delimiters

From a old thread with Jim Rech:
This is the only way as far as I know
******************************

This isn't a big help but I find that, if I do a Data, Text to Columns and
specify the semicolon, then any text file imports I do after that the
semicolon remains selected. Excel 2003 anyway.

So you could 'prime' the text import wizard for an Excel session with this
macro:

Sub PrimeTextImport()
Workbooks.Add
ActiveCell.Value = "abc"
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited,
_
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False,
Semicolon:=True
ActiveWorkbook.Close False
End Sub




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
I don't get it. I haven't programmed since C++ in college. Is there a way for
me to adjust the defaults in Excel so that it will be in effect for all
imports as well as new workbooks or do I have to use code?

"Ron de Bruin" wrote:

You can do that in the code on my website
See reply in your other thread

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
Hello,

How do I change the default delimiters in Excel 2007? I want to add ';' and
',' to the default delimiters instead of selecting it every time I import
files.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Change Default Delimiters

Ok. I'll give coding a try. Thanks Again!

"Ron de Bruin" wrote:

From a old thread with Jim Rech:
This is the only way as far as I know
******************************

This isn't a big help but I find that, if I do a Data, Text to Columns and
specify the semicolon, then any text file imports I do after that the
semicolon remains selected. Excel 2003 anyway.

So you could 'prime' the text import wizard for an Excel session with this
macro:

Sub PrimeTextImport()
Workbooks.Add
ActiveCell.Value = "abc"
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited,
_
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False,
Semicolon:=True
ActiveWorkbook.Close False
End Sub




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
I don't get it. I haven't programmed since C++ in college. Is there a way for
me to adjust the defaults in Excel so that it will be in effect for all
imports as well as new workbooks or do I have to use code?

"Ron de Bruin" wrote:

You can do that in the code on my website
See reply in your other thread

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Renee B." wrote in message ...
Hello,

How do I change the default delimiters in Excel 2007? I want to add ';' and
',' to the default delimiters instead of selecting it every time I import
files.


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
delimiters and manipulation PBArich Excel Worksheet Functions 0 June 12th 07 06:46 PM
Missing delimiters after 15 records BrianFromMN Excel Discussion (Misc queries) 3 September 1st 06 10:58 PM
using multiple delimiters at the same time [email protected] Excel Discussion (Misc queries) 2 August 2nd 06 01:45 AM
delimiting w/multiple delimiters? NTaylor Excel Discussion (Misc queries) 0 January 11th 06 04:22 PM
How do I get carriage returns to not be row delimiters in text fi. RV Excel Discussion (Misc queries) 1 December 16th 04 11:47 PM


All times are GMT +1. The time now is 07:22 PM.

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

About Us

"It's about Microsoft Excel"