I have a macro that has worked before in powerpoint 2016. But after some time it did not work. I want to use the macro to rotate a picture by 0.1 degrees. (Normally you can only rotate by 1.0 degree.) This is the code of the macro which I found here:
Sub littleRot()
Dim oshp As Shape
On Error Resume Next
Set oshp = ActiveWindow.Selection.ShapeRange(1)
oshp.Rotation = oshp.Rotation + 0.1
End Sub
I did ‘Run’ the macro. I select the picture Format - (menu Arrange:) Rotate – More Rotation Options I tried ‘0.1’ and ‘0,1’. But it automatically rounds to an integer.
Because it has worked before I think the macro is not enabled. I can’t think of anything else that changed since the previous time it worked. So I tried in Trust Center Macro Settings ‘Enable all macros’. I also digitally signed the macro.
I did not have an error message.