Sub Print_withoutrange()
Set r = Range("A6:A461")
With r.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With r.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
'
[COLOR=#0000ff] ActiveSheet.PrintOut[/COLOR]
'
With r.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With r.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
End Sub