Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default In Excel, how can I show very long text in a single cell?

I'm using WRAP TEXT but the data in the cell is truncated. I can see the
entire entry in the formula window, but not in the cell.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 284
Default In Excel, how can I show very long text in a single cell?

Noreen

Try while holding "alt" and touching "Enter". This will place a hard return
in the cell and should allow you to see more of your text in the cell. You
will probibly want to enter a couple hundred characters then "alt" "enter".
You can use several of these if necessary. Play with it until you get it the
way you like it.

Mike Rogers

"Noreen" wrote:

I'm using WRAP TEXT but the data in the cell is truncated. I can see the
entire entry in the formula window, but not in the cell.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default In Excel, how can I show very long text in a single cell?

Add an Alt + Enter for a linefeed every 100 or so characters.

Excel's specs state you can enter 32767 characters in a cell but only 1024 will
be visible or can be printed.

Adding the linefeeds extends that 1024 limit.


Gord Dibben MS Excel MVP

On Tue, 20 May 2008 15:40:21 -0700, Noreen
wrote:

I'm using WRAP TEXT but the data in the cell is truncated. I can see the
entire entry in the formula window, but not in the cell.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 25
Default In Excel, how can I show very long text in a single cell?

Hi Noreen.
Try to avoid excessive efforts :-)

'============= by Norman Jones in italian NG
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Rng As Range
Dim Rng2 As Range
Dim rCell As Range
Dim iPos As Long
Dim i As Long, j As Long
Dim iCtr As Long
Dim sStr As String
Const iNuovaRiga = 100 '<<=== to change

Set Rng = Range("A1:A100") '<<=== to change
Set Rng2 = Intersect(Rng, Target)

If Not Rng2 Is Nothing Then
On Error GoTo XIT
Application.EnableEvents = False
For Each rCell In Rng2.Cells
With rCell
rCell.Value = Replace(rCell.Value, Chr(10), "")
j = Len(.Text)
For i = 1 To j - iNuovaRiga Step iNuovaRiga
iPos = iNuovaRiga * (1 + iCtr) + iCtr
.Formula = Left(.Text, iPos) _
& Chr(10) & Mid(.Text, iPos + 1)
iCtr = iCtr + 1
Next i
End With
Next rCell
End If
XIT:
Application.EnableEvents = True
End Sub
'<<=============

Regards
Eliano


"Noreen" wrote:

I'm using WRAP TEXT but the data in the cell is truncated. I can see the
entire entry in the formula window, but not in the cell.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
show apostrophe / single quote in cell Beans Excel Discussion (Misc queries) 3 April 4th 23 10:23 AM
Excel - How do I fit 2 lines of text in one cell, vs a long line? Ruthie Excel Discussion (Misc queries) 4 June 8th 07 03:17 PM
format cells to display 20 long sentences in a single cell r Excel Discussion (Misc queries) 2 December 8th 06 03:46 PM
How much text can I type into a single cell in Excel? KathfromWI Excel Discussion (Misc queries) 2 October 14th 05 05:15 PM
print 1 long row(20 columns) in excel to one single page Calvin Excel Worksheet Functions 1 November 10th 04 06:51 PM


All times are GMT +1. The time now is 11:33 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"