Text in column too long - making it hard to read spreadsheet

W

windyhill

We're using Excel to document technical issues regarding our biz processes.
Right now there are 50 rows of issue records. One of the columns is called
'Update' where it describes the steps taken to resolve the issue. This column
is getting too long and there are columns to each side of it so it can't be
widened anymore as the spreadsheet gets printed for mgmt rpts.

Is there a way to show the 1st sentence of each Update and then have it
display on another worksheet somehow? Or otherwise make the column smaller?
(Have tried font, etc, to no avail).

Any help or ideas at all are appreciated. Am only versed in basic Excel.
Thank you.
 
L

Luke M

Have you tried formatting the cell (under alignment) to word wrap, and then
goto format, row-autofit?

If that won't work, you could mimic what you describe by using a combination
of the FIND and LEFT/RIGHT functions.
=LEFT(A2,FIND(".",A2))
would return the first sentence.
=RIGHT(A2,LEN(A2)-FIND(".",A2))
would return everything else.

You could simply put these formula wherever you actually want the data
displayed, but you'd have to remember to input the actual text in the correct
spot. (maybe a hidden column, or off to the side out of print range?)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top