PageObject Userdefined-Cells

M

mikeFin

I want to access through VBA the value of a user-defined-Cells of a Page.

This isn't working:

ActiveDocument.Pages(1).Cells("User.mycell")

How should I do that?
Many thanks in advance.
 
J

JuneTheSecond

Hi, mikeFin.
Please, try
ActiveDocument.Pages(1).PageSheet.Cells("User.mycell"),
or
ActiveDocument.Pages(1).Shapes("ThePage").Cells("User.mycell"),
cells property property is related just on shape object.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top