R
rhamre
Ok, I really didn't want to ask this here, and i wanted to figure this out
without help.
Also, keep in mind i have no VB experience/VBA experience.
I have a macro, it does a variety of things.... one thing it needs to do now
is go through the document by finding specific entries, then when it finds
the entry, go into paragraphformat, and add "0.2" to whatever the current
margin is set at.
If anyone could offer input, it would be greatly appreciated.
This is what i have so far-
With Selection.Find
.Text = "Except*:"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.MatchWildcards = True
Do While .Execute
With Selection.ParagraphFormat
.LeftIndent = (.LeftIndent + 0.2)
End With
Loop
End With
without help.
Also, keep in mind i have no VB experience/VBA experience.
I have a macro, it does a variety of things.... one thing it needs to do now
is go through the document by finding specific entries, then when it finds
the entry, go into paragraphformat, and add "0.2" to whatever the current
margin is set at.
If anyone could offer input, it would be greatly appreciated.
This is what i have so far-
With Selection.Find
.Text = "Except*:"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.MatchWildcards = True
Do While .Execute
With Selection.ParagraphFormat
.LeftIndent = (.LeftIndent + 0.2)
End With
Loop
End With