Thread: Please help..
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mauro Gamberini Mauro Gamberini is offline
external usenet poster
 
Posts: 3
Default Please help..

i want to change the page setup to landscape and margins to 0.25 in the
macro written in an excel sheet..does anyone have a macro code for this
?



Public Sub MarginLandscape()

With ActiveSheet.PageSetup
.LeftMargin = Application.InchesToPoints(0.25)
.RightMargin = Application.InchesToPoints(0.25)
.TopMargin = Application.InchesToPoints(0.25)
.BottomMargin = Application.InchesToPoints(0.25)
.Orientation = xlLandscape
End With

End Sub



--
----------------------------
Mauro Gamberini