A
a
Dear all I have a problem when Importing .CSV Files to Access data base
My Problem is:
When Importing field contain text and number the access data (discard) (rid)
the text value and display only number value
What I mean access 2003 thing that the field contain number only so discard
the text value
Example
My_filed_that_contain_text_and_numbers
1
A
2
C
3
Fsd
And so on
Access do that
My_filed_that_contain_text_and_numbers
1
2
3
And create table name import error (Type Conversion Failure)
My code is :
DoCmd.TransferText acImportDelim, "", "MyTable", Mypath, True, ""
My Problem is:
When Importing field contain text and number the access data (discard) (rid)
the text value and display only number value
What I mean access 2003 thing that the field contain number only so discard
the text value
Example
My_filed_that_contain_text_and_numbers
1
A
2
C
3
Fsd
And so on
Access do that
My_filed_that_contain_text_and_numbers
1
2
3
And create table name import error (Type Conversion Failure)
My code is :
DoCmd.TransferText acImportDelim, "", "MyTable", Mypath, True, ""