The Rev
Registered User.
- Local time
- Yesterday, 21:38
- Joined
- Jan 15, 2003
- Messages
- 119
Greetings,
I have an Access 2016 database that I am importing data from a spreadsheet. Below is the command I am using to do so:
DoCmd.TransferSpreadsheet acUpdate, acSpreadsheetTypeExcel12Xml, "Tbl_Objectives_Import", strSelectedItem, True
Everything works as anticipated except my long text field labeled Validation_Text is getting truncated at 255 characters. The data in the Excel sheet cells are longer than 255 characters. I need all of the data in the field. My table field is long text, rich text formatted, and I removed the @ on the table design. I see that it is a known problem, but none of the suggested methods are feasible (linking to the spreadsheet, adding phantom records, and sorting based on text length). How can I get this thing to just import the whole cell's data?
Thanks
The Rev
I have an Access 2016 database that I am importing data from a spreadsheet. Below is the command I am using to do so:
DoCmd.TransferSpreadsheet acUpdate, acSpreadsheetTypeExcel12Xml, "Tbl_Objectives_Import", strSelectedItem, True
Everything works as anticipated except my long text field labeled Validation_Text is getting truncated at 255 characters. The data in the Excel sheet cells are longer than 255 characters. I need all of the data in the field. My table field is long text, rich text formatted, and I removed the @ on the table design. I see that it is a known problem, but none of the suggested methods are feasible (linking to the spreadsheet, adding phantom records, and sorting based on text length). How can I get this thing to just import the whole cell's data?
Thanks
The Rev