Sub Test1() Dim s As Shape, eff As Effect For Each s In ActivePage.Shapes For Each eff In s.Effects If eff.Type = cdrLens Then If eff.Lens.Type = cdrLensMagnify Then If eff.Lens.Magnification > 3 Then eff.Lens.Magnification = 3 End If End If Exit For End If Next eff Next sEnd Sub