Cell Display Limit

Chris A Wood

New Member
Joined
Jul 31, 2008
Messages
39
Hi,

In Excel 2003, my file will not display on the screen all of the characters in one of the cells. I have read the character limit is 1,024. Is there any way to increase this limit to display more?

Thanks,

Chris :biggrin:
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You can break the text up with line feeds (Alt+Enter) but if you have a lot of text you may run up against the maximum row height at some point.
 
Upvote 0
Hi Chris

Depending on the font and size settings you are using you can actually get more than 1024 to display (may depend on Zoom settings too) - but this is only going to tweak the 1024 (eg you mighgt get 1200 to show). If you need more then either consider using a texbox or a different program (!).
 
Upvote 0
Thanks for the tip on Alt Enter - That is helping.

Also, thanks for the tip on tweaking some settings.

I'll see how much data I can get in!

:LOL:
 
Upvote 0
Not that I know, but I could be wrong. I'm lazy and would never consider a cell length that long. But you might be able to show the overflow in an adjacent cell
Code:
=If(LEN(A1)>1024,RIGHT(A1),LEN(A1)-1024)
or in a Comment
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column <> 1 Then Exit Sub
If Len(Target) > 1024 Then
    Target.ClearComments
    Target.AddComment.Text Text:=Right(Target, Len(Target) - 1024)
End If
End Sub
lenze
 
Upvote 0
Some good code to use. It is actually not my spreadsheet - it is my boss's. But hopefully we can use these hints to make it work!

Thanks!

:)
 
Upvote 0

Forum statistics

Threads
1,214,573
Messages
6,120,318
Members
448,956
Latest member
Adamsxl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top