My App happily reads strings from a spreadsheet. These values may now be numbers (i.e. have no aplha chars in them).
The individual cells have to be formatted as text, otherwise I get a runtime error 'Numeric field overflow' on accessing this value. I thought that the data was retrieved as a variant, so shouldn't make any different what type it is?
Even
Nz(rsImport(1), "")
Causes the error!
I'm connecting thus, and retrieving with 'select * from'
Set ltb = db.CreateTableDef(strLink_name)
ltb.Connect = xConnection_string
ltb.SourceTableName = xTable
Any one explain this?
Ta.
The individual cells have to be formatted as text, otherwise I get a runtime error 'Numeric field overflow' on accessing this value. I thought that the data was retrieved as a variant, so shouldn't make any different what type it is?
Even
Nz(rsImport(1), "")
Causes the error!
I'm connecting thus, and retrieving with 'select * from'
Set ltb = db.CreateTableDef(strLink_name)
ltb.Connect = xConnection_string
ltb.SourceTableName = xTable
Any one explain this?
Ta.