Increasing the maximum allowable cell limit in Excel

12.2k Views Asked by At

I am trying to retrieve some data from my database and displaying it in excel. One of the field which am extracting is returning a value due to which I am getting the following error:

[Macro <ReportData.MessageText> returned 33612 characters which is more than the maximum allowable by Excel (32767). Cell Content has been truncated to 32767 characters.] 

I dont want the cell content to be truncated as it contains important data. Is there a way by which I can increase the cell limit? I tried merging two cells which didn't work.

Please guide.

1

There are 1 best solutions below

0
On

This is impossible as this is an Excel limitation. The only thing you could do is splitting the content from Database into two (or if needed more) cells.

Write a function that checks content length and if it is more than 32767 characters put the first 32767 in a cell and the rest (if less than 32767) in another cell or split again.