Guest_imported
New member
- Jan 1, 1970
- 0
Hi friends, Bija here..
I am trying to make a toolbar button macro in word 2000 which "increases" the left indent of the selected cells in a table by a fixed value (e.g. 0.3 cm). I am writing the following code to achieve this.
With Selection.Paragraphformat
.LeftIndent = .LeftIndent + 8.5
End With
This macro seems to work only once for the selected cells in the table.. after that it gives the error. When i change the code to :
With Selection.Paragraphs
.LeftIndent = .LeftIndent + 8.5
End With
All the cells in the table are affected.. instead of the selected cells.
Now i really require help from some of you gentlemen out there. Thanks in advance..
I am trying to make a toolbar button macro in word 2000 which "increases" the left indent of the selected cells in a table by a fixed value (e.g. 0.3 cm). I am writing the following code to achieve this.
With Selection.Paragraphformat
.LeftIndent = .LeftIndent + 8.5
End With
This macro seems to work only once for the selected cells in the table.. after that it gives the error. When i change the code to :
With Selection.Paragraphs
.LeftIndent = .LeftIndent + 8.5
End With
All the cells in the table are affected.. instead of the selected cells.
Now i really require help from some of you gentlemen out there. Thanks in advance..