bluepenink
Well-known Member
- Joined
- Dec 21, 2010
- Messages
- 585
hello
is there a way possible for the macro to work in excel 2003? i tried to run this macro on a older computer that had excel 03 and it didnt appear to work. any idea why?
it does not show any error or nothing! :S
is there a way possible for the macro to work in excel 2003? i tried to run this macro on a older computer that had excel 03 and it didnt appear to work. any idea why?
Code:
Option Explicit
Sub SetShapeReferences()
Dim shp As Drawing
Dim i As Integer
i = 1
For Each shp In ActiveSheet.Drawings
shp.Formula = "=" & ActiveSheet.Range("S6").Offset(i, 0).Address
i = i + 1
Next shp
End Sub
it does not show any error or nothing! :S