Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Where are you running the code from? Are you targeting a particular document, as 'ThisDocument' will refer to the document that's hosting the code. Have you checked that you're actually hitting that CellSRC line? Add a breakpoint (click in the left margin)...when you hit the breakpoint, is the shape reference the one you were expecting? – JohnGoldsmith Jan 18 at 22:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.