Worksheet cells can contain a maximum of 32,767 characters. This is different from versions of Excel before Excel 97, in which worksheet cells can contain a maximum of 255 characters. Even though cells can contain a very large number of characters, you may experience problems when working with these cells.
Example
In the following example, the formulas in the dependent workbook return a
maximum of 255 characters:
- Create a new workbook.
- In cell A1 of Sheet1, type the following formula:
=REPT("x",5)
Note that the formula returns five "x" characters ("xxxxx").
- On the File menu, click Save As, and then save the workbook as Book1.xls in the My Documents folder.
- Create a second new workbook.
- Type the following formulas in Sheet1:
A1: =[Book1.xls]Sheet1!A1
A2: =LEN(A1)
Note that the formula in cell A1 also returns 5 "x" characters and the formula in cell A2 returns the value 5.
- On the File menu, click Save, and then save the workbook as Book2.xls in the My Documents folder. On the File menu, click Close.
- In Book1.xls, change the formula in cell A1 to the following:
=REPT("x",32767)
The formula returns 32,767 "x" characters.
- On the File menu, click Save, and then click Close.
- Open Book2.xls. When you are asked to update links, click Yes.
The formula in cell A1 returns 255 "x" characters, not 32,767 characters. Also, the formula in cell A2 returns the value 255.
- Open Book1.xls, and then switch to Book2.xls.
The formula in cell A1 returns 32,767 "x" characters, and the formula in
cell A2 returns the value 32767.