I am using the following code to open an Excel spreadsheet using DAO and reading records and posting transactions into an accounting application.
The spreadsheet layout is simple:
Vendor Invoice Date Amount
ABC100 IN100 04/01/2008 100.00
DEF100 IN101 04/01/2008 200.00
The problem is that you can have mixed data types in Excel, for example in the Invoice column users can enter string and numeric data. If everything is string then there is no problem, but with mixed data types the field returns Null for invalid data types.
If numbers are entered with a leading apostrophe (converting number to string) then all is fine, but the end users keep forgetting to do this.
The question is: Is there a way to force a data type to string for certain fields in the DAO recordset?
I have found references to using a text file for defining data types for text files opened using DAO, but there is nothing similar for Excel.
BTW ADO does the same.
The spreadsheet layout is simple:
Vendor Invoice Date Amount
ABC100 IN100 04/01/2008 100.00
DEF100 IN101 04/01/2008 200.00
Code:
Dim dbExcel As DAO.Database
Dim rsExcel As DAO.Recordset
Set dbExcel = OpenDatabase("C:\File.xls", False, True, "Excel 8.0; HDR=YES;")
Set rsExcel = dbExcel.OpenRecordset("Sheet1$")
Do While Not rsExcel.EOF
'Read records and process data
rsExcel.MoveNext
Loop
The problem is that you can have mixed data types in Excel, for example in the Invoice column users can enter string and numeric data. If everything is string then there is no problem, but with mixed data types the field returns Null for invalid data types.
If numbers are entered with a leading apostrophe (converting number to string) then all is fine, but the end users keep forgetting to do this.
The question is: Is there a way to force a data type to string for certain fields in the DAO recordset?
I have found references to using a text file for defining data types for text files opened using DAO, but there is nothing similar for Excel.
BTW ADO does the same.