https://issues.apache.org/ooo/show_bug.cgi?id=84878
Andre <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #13 from Andre <[email protected]> --- It really is a problem of a size limitation of the ScRangeName class. Its base class ScCollection defines in sc/inc/collect.hxx the value of MAXCOLLECTIONSIZE to be 16384. This limit is tested in ScCollection::AtInsert() and, if reached, the insert request is silently ignored. It is almost a wonder that the import works at all. An experiment with changing MAXCOLLECTIONSIZE to 32768 fixes the bug for this particular bug document. Instead of just enlarging the limit it might be good to know why it exists in the first place (i.e. why is the container not dynamically growing) and why it has the value 16384. -- You are receiving this mail because: You are on the CC list for the bug. You are watching all bug changes.
