XL Pro
Board Regular
- Joined
- Apr 17, 2002
- Messages
- 249
- Office Version
- 365
- Platform
- Windows
I did a google and found that it is 32,000.
I ran this macro:
and get 32,767 characters.
Is this a safe number to use, or should I stick to the 32,000?
I have a (l)user who is trying to type paragraphs into cells and is running into problems. She's nowhere near the 32,000 (somewhere in the vicinity of about 2,000), but she's the cells are truncating the text.
At first I thought it was of a 255 character limit (though I know I'm wrong on that count now), but she said she has had luck in merging cells which helped in keeping the text together.
Any thoughts?
I ran this macro:
Code:
Sub FillX()
For i = 1 To 33000 / 2
x = x & "X "
Next i
ThisWorkbook.Sheets(1).Range("A1") = x
End Sub
Is this a safe number to use, or should I stick to the 32,000?
I have a (l)user who is trying to type paragraphs into cells and is running into problems. She's nowhere near the 32,000 (somewhere in the vicinity of about 2,000), but she's the cells are truncating the text.
At first I thought it was of a 255 character limit (though I know I'm wrong on that count now), but she said she has had luck in merging cells which helped in keeping the text together.
Any thoughts?