I want to hide rows (or cells) in a table. Is this possible? I'm using Word 2003
R RobinC Jun 14, 2005 #1 I want to hide rows (or cells) in a table. Is this possible? I'm using Word 2003
G Greg Jun 14, 2005 #2 Format the entire row as hidden text and don't display hidden text in Tools>Options>View Sub Test() Selection.Tables(1).Rows(?).Range.Font.Hidden = True End Sub Replace "?" in the code above with the row number you want to hide.
Format the entire row as hidden text and don't display hidden text in Tools>Options>View Sub Test() Selection.Tables(1).Rows(?).Range.Font.Hidden = True End Sub Replace "?" in the code above with the row number you want to hide.
S Stefan Blom Jun 20, 2005 #3 Or from the user interface: Select the row [or select the cell(s)]. On the Format menu, click Font. Click the Font tab. Click "Hidden" to select it, and then click OK.
Or from the user interface: Select the row [or select the cell(s)]. On the Format menu, click Font. Click the Font tab. Click "Hidden" to select it, and then click OK.