Posted to microsoft.public.excel.programming
|
|
printing a range that changes all the time
Thanks Ron,
This works fine for me !
Thanks,
Pierre
Ron de Bruin wrote:
Hi Pierre
youy can unhide and hide in the code
Sub Print_with_Autofilter()
With Sheets("Sheet1")
.Visible = True
.Range("B7:B100").AutoFilter Field:=1, Criteria1:="<"
.PrintPreview
.AutoFilterMode = False
.Visible = False
End With
End Sub
Ron,
[quoted text clipped - 20 lines]
Thanks,
Pierre
--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200510/1
|