Hi, I realise there is a similar old post, but I can't seem to see how it helps me.
I have a simple macro in which I want to move a shape across a screen.
It worked in older Excel versions, but now does not update the screen, and only shows the shapes final position.
I've simplifed it for this test and extract which still does not work:
Is this an excel 2013 issue? Is there a solution?
I'd be grateful for any advice.
I have a simple macro in which I want to move a shape across a screen.
It worked in older Excel versions, but now does not update the screen, and only shows the shapes final position.
I've simplifed it for this test and extract which still does not work:
Is this an excel 2013 issue? Is there a solution?
I'd be grateful for any advice.
Code:
Sub Test()
Application.ScreenUpdating = True
For i = 1 To 100
With Worksheets("Funnel Show").Shapes("Funnel")
.Top = 5
.Left = i * 5 + 30
End With
Next i
End Sub
Last edited by a moderator: