Excel "chops off" half of first line of text

  • Thread starter Thread starter bobf
  • Start date Start date
B

bobf

I have a spreadsheet where one column is cells that each
contain 30 to 50 words of text. Even after applying
FORMAT, ROW, AUTOFIT when I print I lose the top 50% of
the characters in most, but not all, of the top line of
these cells. Everything looks fine on screen prior to
printing. Has anyone any ideas or work-rounds, please?
 
Hi,

The easiest (and non programmatic) way to do this is to highlight the sheet,
and mouse over one of the row divisions (i.e. between 2 rows, which you
would normally use to resize). Double clicking here will expand all rows to
autofit contents.

Otherwise, try running this Macro:

Sub FitMeUp()
Cells.Select
Cells.EntireRow.AutoFit
Range("A1").Select
End Sub

Hope this helps.

Warm regards

Sunil Jayakumar


bobf said:
I have a spreadsheet where one column is cells that each
contain 30 to 50 words of text. Even after applying
FORMAT, ROW, AUTOFIT when I print I lose the top 50% of
the characters in most, but not all, of the top line of
these cells. Everything looks fine on screen prior to
printing. Has anyone any ideas or work-rounds, please?

www.ayyoo.com/credit-cards.html
 
bobf,

On your printer settings look for a "raster" option, or a "print truetype
fonts as graphics" option. This happens sometimes where I work and it is due
to tiny differences in the size of the fonts on the PC and the preloaded
fonts in the printer. Another option is sometimes called "use softfonts"
depends on the make of the printer, but at the end of the day what you want
to achieve is to have the printer use your system fonts to print, or print
the fonts as images and not use its own fonts.

Hope this helps,

Kevin
 

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

Back
Top