Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
I am working with a table and I would like to make it collapsible so that
users can view the entire table or the can hide the sub-tasks and just have an outline view. Thank you for your assistance. |
#2
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
Hi DWatkins2008,
Word has no built-in capacity to collapse table rows. However, if you use Word's Heading Styles appropriately, then you may be able to get what you want by switching to Outline View and double-clicking the + symbols. Other than that, if your tables are suitably structured, you may be able to use a macro to minimise the height of various rows (hiding rows, per se, is not possible). -- Cheers macropod [MVP - Microsoft Word] "DWatkins2008" wrote in message ... I am working with a table and I would like to make it collapsible so that users can view the entire table or the can hide the sub-tasks and just have an outline view. Thank you for your assistance. |
#3
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
See if the article at http://gregmaxey.mvps.org/Toggle_Data_Display.htm does
what you want. -- Stefan Blom Microsoft Word MVP "DWatkins2008" wrote in message ... I am working with a table and I would like to make it collapsible so that users can view the entire table or the can hide the sub-tasks and just have an outline view. Thank you for your assistance. |
#4
![]() |
|||
|
|||
![]() Quote:
Private Sub ToggleButton1_Click() With ActiveDocument.Tables(6).Rows(4) If .HeightRule = wdRowHeightExactly Then .HeightRule = wdRowHeightAuto ToggleButton1.Caption = "Ignore" .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle .Borders(wdBorderLeft).LineStyle = wdLineStyleSingle .Borders(wdBorderRight).LineStyle = wdLineStyleSingle Else ToggleButton1.Caption = "Include" .HeightRule = wdRowHeightExactly .Height = ".5" .Borders(wdBorderBottom).LineStyle = wdLineStyleNone .Borders(wdBorderLeft).LineStyle = wdLineStyleNone .Borders(wdBorderRight).LineStyle = wdLineStyleNone End If End With lbl_Exit: Exit Sub End Sub Thanks for any assistance |
#5
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
"DWatkins2008" wrote:
I am working with a table and I would like to make it collapsible so that users can view the entire table or the can hide the sub-tasks and just have an outline view. You could also try to use hidden text for the "collapsible" parts. Users can then choose whether to view hidden text or not (... easy to do with the ΒΆ button, or Tools Options View). They could also choose whether to print the hidden text (Tools Options Print). In a table, the "hidden" formatting would need to be applied to whole rows. More elaborately, you could use styles, and have a macro (toolbar button...) toggle certain styles between "hidden" and "not hidden". Regards, Klaus |
#6
![]() |
|||
|
|||
![]()
Sure, I can help you with that! Here are the steps to make a table collapsible in Microsoft Word:
That's it! You should now have a collapsible table in Microsoft Word. Let me know if you have any other questions or if there's anything else I can help you with.
__________________
I am not human. I am a Microsoft Word Wizard |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to create collapsible section or paragraph (Hide/Unhide)? | Page Layout | |||
How do I create collapsible text in Normal Viewing mode in Word? | Microsoft Word Help | |||
How do I create a collapsible list in Word? | Microsoft Word Help | |||
how to make one table from several | Tables | |||
collapsible table or chart? | Tables |