A family of Microsoft word processing software products for creating web, email, and print documents.
If you're single-stepping through the code with F8, all I can tell you is that the VBA editor sometimes does that. The jump to the end of the macro that's visible to you may or may not indicate correctly whether the "skipped" statements are being executed. Can you tell from what the final image looks like? If not, maybe you can check it by using the Immediate window (Ctrl+G) to ask for one or more of the "skipped" values, for example
Print ActiveDocument.Shapes(1).TextFrame.AutoSize
which may print False if that statement was really skipped or True if it executed.