.UsedRange is a worksheet property that includes all cells on a sheet that
have data.
.Address is the absolute reference from the first cell in the upper left
corner, to the last cell in the lower right corner, of .UsedRange.
That means everything on the sheet will print!
If you can live with doing what you want manually, then select the cells to
print and specify "Selection" in the print dialog's "Print what" section.
Otherwise, you'll have to define the imported data as a named range and refer
to it in code.
Regards,
GS
> Sheets("Sheet1").Range("A4":"A8")
>
[quoted text clipped - 7 lines]
> I assume that either the 'UsedRange' or the 'Address' part has to be
> substituted with something for that to work.