I have the following word document table:
I have VBA code that does a 'tab' at cell(1,3) to automatically insert a new row:
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?
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?