The Macro below is what I use to change the sizes of my pictures in one sheet but I would need to apply this to all my worksheets. What could I add here to make this happen?
Option Explicit
Sub ChangeAllPics()
Dim s As Shape
Dim ws As Worksheet
Set ws = ActiveSheet
For Each s In ActiveSheet.Shapes
s.LockAspectRatio = msoFalse
s.Width = 65
s.Height = 65
Next s
End Sub
Would really appreciate the help!
Option Explicit
Sub ChangeAllPics()
Dim s As Shape
Dim ws As Worksheet
Set ws = ActiveSheet
For Each s In ActiveSheet.Shapes
s.LockAspectRatio = msoFalse
s.Width = 65
s.Height = 65
Next s
End Sub
Would really appreciate the help!