Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
This page has been translated for your convenience with an automatic translation service. This is not an official translation and may contain errors and inaccurate translations. Autodesk does not warrant, either expressly or implied, the accuracy, reliability or completeness of the information translated by the machine translation service and will not be liable for damages or losses caused by the trust placed in the translation service.Translate
exporttable() truncates strings longer than 1000 characters
When using exporttable(), string values whose length is higher than 1000 characters get truncated. Is it intended? Please find attached a model that recreates this behavior.
Hi @pasichpDVP72, exporttable() only exports up to 1000 characters from an individual cell in a Table because that is how it was initially created and there hasn't been a reason to change it. If you are using bundle data for your table, then the limit goes to 4096. Or if use the Excel Interface to export a table, you can export more than 1000 character in a cell. I'm not sure what the limit may be for this one, but I suspect it is determined by Excel, so more like 10's of thousands.
Are you wanting to do something where the 1000-character limit is a roadblock? If these other options are not feasible for what you are trying to do, then I can put in a software improvement request to the development team.
Hi Logan, I already got around this limitation using fileopen() + fpt(). So changing those limits is more of a nice-to-have as far as I'm concerned at this point.