Think easy and innovative.
There is a way you can change and resize your pictures and charts in just a click.
Have you heard about VBA coding? If yes just go straight for code below, if not lets learn just in a minute.
First open your document in which you have pictures and charts that needs to be resized at once.
-Right click on menu tab.
-click on customize quick access toolbar.
-select Customize ribbon tab and in choose command from drop down list to click for Main tabs.
-Then click Developer tab and click ADD button and press OK.
-Now goto Developer menu tab and Click Visual Basic editor.
-Now Add a module and Type the code on the module window.
CODE FOR RESIZING THE PICTURES:
Sub resize()
Dim x As Long
With ActiveDocument
For x = 1 To .InlineShapes.Count
With .InlineShapes(x)
.Height = InchesToPoints(2)
.Width = InchesToPoints(3)
End With
Next x
End With
End Sub
Hope you find a easy method for your resizing mass pictures. This can be done in every office packages like in excel,powerpoint as well. Thank you.
If you find my content good, Please like, follow and subscribe as well.
7 Comments
very valuable
ReplyDeleteIf you want all the pictures to be a certain height without word doing the resizing of the width you can just delete the width and it'll resize all the pictures to the same height
ReplyDeleteSub resize()
Dim x As Long
With ActiveDocument
For x = 1 To .InlineShapes.Count
With .InlineShapes(x)
.Height = InchesToPoints(2)
End With
Next x
End With
End Sub
if you want to edit in your mobile phone so install Background remover
ReplyDeletegreat
ReplyDeleteIts nt happening
ReplyDeleteGetting runtime error 424
When i clicked on debug the 4th line is getting yellow highlighted which is for x =1 .....
Plz assist
How can I put border on multiple images in my word document?
ReplyDeletehow do i resize a GROUP of picture at once, and not the whole document?
ReplyDelete