Skip to content

Instantly share code, notes, and snippets.

@kristopherjohnson
Created December 13, 2013 06:02
Show Gist options
  • Save kristopherjohnson/7940367 to your computer and use it in GitHub Desktop.
Save kristopherjohnson/7940367 to your computer and use it in GitHub Desktop.
Microsoft Word macro to resize all pictures in a document to 40% of original size
Sub ScalePictures40()
Dim i As Long
With ActiveDocument
For i = 1 To .InlineShapes.Count
With .InlineShapes(i)
.ScaleHeight = 40
.ScaleWidth = 40
End With
Next i
End With
End Sub
@Chamauta
Copy link

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment