Re: How do I import several csv files into one excel worksheet?
- From: marksince1984 <marksince1984.28uvay_1149387301.3514@xxxxxxxxxxxxxxxxxxxxx>
- Date: Sat, 3 Jun 2006 21:11:02 -0500
There is a check in there that the folder contains csv files, it is this
i need to get around. Any ideas?
Dave Peterson Wrote:
Without any testing...
'Open the TXT file in Excel
Application.ScreenUpdating = False
Workbooks.OpenText Filename:=TXTFileName, Origin:=xlWindows, StartRow
_
:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=False, Semicolon:=False, Comma:=True,
_
Space:=False, Other:=False
becomes:
'Open the TXT file in Excel
Application.ScreenUpdating = False
Workbooks.OpenText Filename:=TXTFileName, Origin:=xlWindows, StartRow
_
:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=TRUE, Semicolon:=False, Comma:=FALSE,
_
Space:=False, Other:=False
--
marksince1984
------------------------------------------------------------------------
marksince1984's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=33484
View this thread: http://www.excelforum.com/showthread.php?threadid=546042
.
- Follow-Ups:
- Re: How do I import several csv files into one excel worksheet?
- From: Dave Peterson
- Re: How do I import several csv files into one excel worksheet?
- References:
- Re: How do I import several csv files into one excel worksheet?
- From: marksince1984
- Re: How do I import several csv files into one excel worksheet?
- From: Dave Peterson
- Re: How do I import several csv files into one excel worksheet?
- Prev by Date: Re: Subtracting 2 hours from time
- Next by Date: Re: format painter wont copy mixed font colors from one cell to next
- Previous by thread: Re: How do I import several csv files into one excel worksheet?
- Next by thread: Re: How do I import several csv files into one excel worksheet?
- Index(es):
Relevant Pages
|