Hi Glyn,
I suspect you have cells with a large number of spaces
or non-breaking spaces on the right side of the cells.
Or possible a shape (image on the page). Did you copy
the data from a web page.
Make a copy of your worksheet:
See if this makes a difference:
Ctrl+A to select all cells on page and then run the
TrimALL macro found on
http://www.mvps.org/dmcritchie/excel/join.htm#trimall
Try deleting all shapes on the page, then do Print Preview:
Sub delShapesOnSht()
'Dave Peterson, misc 2001-11-12, no loop required
If ActiveSheet.Shapes.Count = 0 Then
MsgBox "No Shapes on page for deletion"
Exit Sub
End If
ActiveSheet.Shapes.SelectAll '*** warning DELETE all Shapes
Selection.Delete
End Sub
If that worked and you do have some shapes you want to keep
there are additional macros on my shapes.htm webpage.
The following would appear to do nothing for you since you
indicate that F55 shows up as your lastcell (Ctrl+End)
but this is what I normally use for a single page.
Select the cell you want to be the last cell (F55)
The MakeLastCell macro on my page:
http://www.mvps.org/dmcritchie/excel...m#makelastcell
--
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
"Glyn Baker" <> wrote in message news: om...
> Hi All,
>
> I have an unusual take on an old problem. I have an Excel spreadsheet
> that is printing an extra blank page. I have seen the many many posts
> on this but all attempts to correct it have failed.
>
> My data is in the range A1:F55. When I use Ctrl End, the activecell is
> F55. I have deleted and cleared all columns G to IV and rows 56 to
> 65536. I have used VBA to reset the Used Range but still I get a
> second blank page.
>
> If I set Print Row & Column headings I can see that the second page is
> to the right of my data. It is trying to print columns H to J ie an
> extra 4 columns. If I try to set the sacling to 1 wide and blank tall,
> the data prints on one page but is compressed as it tries to squeeze
> the extra 4 columns onto the page. Obviously there is something
> happening in the last 4 columns but I cannot find it.
>
> Any ideas anyone?
>
> Regards
>
> Glyn Baker