View Single Post
  #2   Report Post  
Jezebel
 
Posts: n/a
Default

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.



"glenno" wrote in message
...
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?