Has anyone experienced very slow performance when using VBA PageSetup… both XL 95 and 2000 seem to totally bog down when processing one of these commands. Example
With ActiveSheet.PageSetup
.LeftMargin = Application.InchesToPoints(0)
.RightMargin = Application.InchesToPoints(0)
.TopMargin = Application.InchesToPoints(0.3)
.BottomMargin = Application.InchesToPoints(0.3)
end with
Each Margin set takes forever.
Is there a fix?
Thanks !!!!