how can I create a table that can be revealed by clicking on it?

G

glenno

I am looking to create a table in a document that is normally hidden (does
not take up page space) but, when an icon or something saying "click here" is
clicked, the table reveals itself. Is this possible?
 
J

Jezebel

Insert the table as normal. Add a bookmark to refer to it. Write a macro to
toggle the Hidden property of the bookmark range --

With ActiveDocument.Bookmarks("MyTable").Range.Font
.Hidden = not .Hidden
End with

Add a Macrobutton field (or button or whatever) to call the macro.
 

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