VBA Word, For each for every “Title 1” style
up vote
-1
down vote
favorite
In VBA I need to make an XML code for every "Title 1" style in the document, is this possible? How?
For Each Title1 In ActiveDocument...
my code....
Next Title1
vba ms-word
add a comment |
up vote
-1
down vote
favorite
In VBA I need to make an XML code for every "Title 1" style in the document, is this possible? How?
For Each Title1 In ActiveDocument...
my code....
Next Title1
vba ms-word
1
It's not really clear what you want to do... Have you looked into using Word's built-inFind
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.
– Cindy Meister
Nov 9 at 11:10
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
In VBA I need to make an XML code for every "Title 1" style in the document, is this possible? How?
For Each Title1 In ActiveDocument...
my code....
Next Title1
vba ms-word
In VBA I need to make an XML code for every "Title 1" style in the document, is this possible? How?
For Each Title1 In ActiveDocument...
my code....
Next Title1
vba ms-word
vba ms-word
edited Nov 9 at 11:08
Cindy Meister
13.3k101934
13.3k101934
asked Nov 9 at 8:53
Hello it's me
3217
3217
1
It's not really clear what you want to do... Have you looked into using Word's built-inFind
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.
– Cindy Meister
Nov 9 at 11:10
add a comment |
1
It's not really clear what you want to do... Have you looked into using Word's built-inFind
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.
– Cindy Meister
Nov 9 at 11:10
1
1
It's not really clear what you want to do... Have you looked into using Word's built-in
Find
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.– Cindy Meister
Nov 9 at 11:10
It's not really clear what you want to do... Have you looked into using Word's built-in
Find
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.– Cindy Meister
Nov 9 at 11:10
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
draft saved
draft discarded
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53222506%2fvba-word-for-each-for-every-title-1-style%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
It's not really clear what you want to do... Have you looked into using Word's built-in
Find
functionality? Find can be used to search formatting as well as or instead of text - test it in the UI and record a macro to get the basic code. Then you need to use a loop with it in order to process the "found" instances - there are lots and lots of examples here and on the internet for doing that.– Cindy Meister
Nov 9 at 11:10