Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. With Word.Application
  2.  
  3. .Selection.GoTo what:=wdGoToBookmark, Name:="BookmarkName"
  4.  
  5. Dim wTable As Word.Table
  6. Set wTable = .Selection.Tables(1)
  7.  
  8. Dim wChart As Word.chart
  9. Set wChart = wTable.Cell(3, 4).Range.InlineShapes(1).chart
  10. End With
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement