I am quite new to VBA.
I have a drawing with hundreds of shapes, and they all have the same data set applied to them. In this case let's say I want to change the value in row "Prop.Row_5" to 0001 for every shape.
Currently I have:
Sub Macro1()
Dim vsoPage As Visio.Page, vsoShape As Visio.Shape
Dim vsoStrng As String
For Each vsoPage In ThisDocument.Pages
For Each vsoShape In vsoPage.Shapes
vsoShape.CellsSRC(visSectionProp, 4, visCustPropsValue).FormulaU = "0001"
Next
Next
End Sub
This is one of several different methods I have tried, nothing seems to work. Can somebody clear this up for me?
