How to connect to a semicolumn separated CSV file form ms-access
up vote
0
down vote
favorite
What do I need to add to
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True
if the fields in c:myFoldermyFile.csv
are separated by ;
?
csv ms-access delimiter
add a comment |
up vote
0
down vote
favorite
What do I need to add to
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True
if the fields in c:myFoldermyFile.csv
are separated by ;
?
csv ms-access delimiter
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
What do I need to add to
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True
if the fields in c:myFoldermyFile.csv
are separated by ;
?
csv ms-access delimiter
What do I need to add to
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True
if the fields in c:myFoldermyFile.csv
are separated by ;
?
csv ms-access delimiter
csv ms-access delimiter
asked 15 hours ago
Dirk Horsten
2,1951228
2,1951228
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Link the file manually using the wizard. Specify the separator as semicolon.
Save the import specification. Remove the link.
Now, specify the import specification to use when creating a new link:
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True, _
SpecificationName:=YourImportSpecification
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Link the file manually using the wizard. Specify the separator as semicolon.
Save the import specification. Remove the link.
Now, specify the import specification to use when creating a new link:
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True, _
SpecificationName:=YourImportSpecification
add a comment |
up vote
0
down vote
Link the file manually using the wizard. Specify the separator as semicolon.
Save the import specification. Remove the link.
Now, specify the import specification to use when creating a new link:
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True, _
SpecificationName:=YourImportSpecification
add a comment |
up vote
0
down vote
up vote
0
down vote
Link the file manually using the wizard. Specify the separator as semicolon.
Save the import specification. Remove the link.
Now, specify the import specification to use when creating a new link:
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True, _
SpecificationName:=YourImportSpecification
Link the file manually using the wizard. Specify the separator as semicolon.
Save the import specification. Remove the link.
Now, specify the import specification to use when creating a new link:
DoCmd.TransferText acLinkDelim, tableName:="myLinkedTableName", _
fileName:="c:myFoldermyFile.csv", _
HasFieldNames:=True, _
SpecificationName:=YourImportSpecification
answered 15 hours ago
Gustav
28.6k51734
28.6k51734
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265976%2fhow-to-connect-to-a-semicolumn-separated-csv-file-form-ms-access%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password