Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stopping Table property 'inheritance' in word

Status
Not open for further replies.

drkestrel

MIS
Sep 25, 2000
439
GB
I have the following word document table:
Code:
|-----------------------------------|
|cell(1,1) | cell(1,2)  | cell(1,3) |
|-----------------------------------|

I have VBA code that does a 'tab' at cell(1,3) to automatically insert a new row:
Code:
Selection.MoveRight(wdCell)

Problem is that contents of cell(1,1) is in bold and italic, unfortunately, when it tags at cell(1,3), it makes cell(2,1) has bold and italic as well. Can I stop it from doing this automatically and easily?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top