Adding a Bookmark Table in a Document
I've got many places I'd like to Bookmark in Word and I'd like to create a Table for all these bookmarks, like a Table Of Contents, but for Bookmarks. For instance :
On page 5 in my Word Document :
[MyPlace 1]
Some text about MyPlace 1
On page 8 in my Word Document :
[MyPlace 2]
Some text about MyPlace 2. This is some other text about MyPlace 2
I've added Bookmarks around each one of my [MyPlace #]. Now I want to create a Table that will show the bookmarks like so :
[MyPlace 1].......................................5
[Myplace 2].......................................8
And I want this table to be updated (such as an update with F9), whenever I change the name of the Bookmark, or its page.
I don't want the text of the content of the bookmark to be a part of said bookmark.
I've tryed using { TOC b "something" }. But I don't know what to put into "something" to get all the bookmarks in one table
microsoft-word-2010 bookmarks
add a comment |
I've got many places I'd like to Bookmark in Word and I'd like to create a Table for all these bookmarks, like a Table Of Contents, but for Bookmarks. For instance :
On page 5 in my Word Document :
[MyPlace 1]
Some text about MyPlace 1
On page 8 in my Word Document :
[MyPlace 2]
Some text about MyPlace 2. This is some other text about MyPlace 2
I've added Bookmarks around each one of my [MyPlace #]. Now I want to create a Table that will show the bookmarks like so :
[MyPlace 1].......................................5
[Myplace 2].......................................8
And I want this table to be updated (such as an update with F9), whenever I change the name of the Bookmark, or its page.
I don't want the text of the content of the bookmark to be a part of said bookmark.
I've tryed using { TOC b "something" }. But I don't know what to put into "something" to get all the bookmarks in one table
microsoft-word-2010 bookmarks
add a comment |
I've got many places I'd like to Bookmark in Word and I'd like to create a Table for all these bookmarks, like a Table Of Contents, but for Bookmarks. For instance :
On page 5 in my Word Document :
[MyPlace 1]
Some text about MyPlace 1
On page 8 in my Word Document :
[MyPlace 2]
Some text about MyPlace 2. This is some other text about MyPlace 2
I've added Bookmarks around each one of my [MyPlace #]. Now I want to create a Table that will show the bookmarks like so :
[MyPlace 1].......................................5
[Myplace 2].......................................8
And I want this table to be updated (such as an update with F9), whenever I change the name of the Bookmark, or its page.
I don't want the text of the content of the bookmark to be a part of said bookmark.
I've tryed using { TOC b "something" }. But I don't know what to put into "something" to get all the bookmarks in one table
microsoft-word-2010 bookmarks
I've got many places I'd like to Bookmark in Word and I'd like to create a Table for all these bookmarks, like a Table Of Contents, but for Bookmarks. For instance :
On page 5 in my Word Document :
[MyPlace 1]
Some text about MyPlace 1
On page 8 in my Word Document :
[MyPlace 2]
Some text about MyPlace 2. This is some other text about MyPlace 2
I've added Bookmarks around each one of my [MyPlace #]. Now I want to create a Table that will show the bookmarks like so :
[MyPlace 1].......................................5
[Myplace 2].......................................8
And I want this table to be updated (such as an update with F9), whenever I change the name of the Bookmark, or its page.
I don't want the text of the content of the bookmark to be a part of said bookmark.
I've tryed using { TOC b "something" }. But I don't know what to put into "something" to get all the bookmarks in one table
microsoft-word-2010 bookmarks
microsoft-word-2010 bookmarks
edited Dec 3 '14 at 17:36
asked Dec 3 '14 at 16:52
xhaltar
95310
95310
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I'd like to create a Table for bookmarks, like a Table Of Contents, but for Bookmarks
To add a table of contents for an individual section, you create a
bookmark for that section and specify that bookmark in the TOC field
code.
Add the bookmarks
Select the section that you want to create a table of contents for.
On the Insert tab, in the Links group, click Bookmark.
In the Bookmark name box, type a name for the bookmark.
Note Use a name that’s easy to remember, such as section1.
Click Add.
Repeat steps 1-4 for each section that you want to add a table of contents to.
Create the tables of contents
Click where you want to add a section table of contents.
On the Insert tab, in the Text group, click Quick Parts, and then click Field.
Under Field names, click TOC.
Click Field Codes, and then click Options.
In the Switches list, click b, click Add to Field, and then click OK.
In the Field codes box, type the name of the bookmark for that section.
Important Be sure that a space separates the b switch and the bookmark name.
Click OK.
Repeat steps 1-7 for each section TOC that you want to add to your document.
Source Add a table of contents for each section
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2fsuperuser.com%2fquestions%2f848097%2fadding-a-bookmark-table-in-a-document%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'd like to create a Table for bookmarks, like a Table Of Contents, but for Bookmarks
To add a table of contents for an individual section, you create a
bookmark for that section and specify that bookmark in the TOC field
code.
Add the bookmarks
Select the section that you want to create a table of contents for.
On the Insert tab, in the Links group, click Bookmark.
In the Bookmark name box, type a name for the bookmark.
Note Use a name that’s easy to remember, such as section1.
Click Add.
Repeat steps 1-4 for each section that you want to add a table of contents to.
Create the tables of contents
Click where you want to add a section table of contents.
On the Insert tab, in the Text group, click Quick Parts, and then click Field.
Under Field names, click TOC.
Click Field Codes, and then click Options.
In the Switches list, click b, click Add to Field, and then click OK.
In the Field codes box, type the name of the bookmark for that section.
Important Be sure that a space separates the b switch and the bookmark name.
Click OK.
Repeat steps 1-7 for each section TOC that you want to add to your document.
Source Add a table of contents for each section
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
add a comment |
I'd like to create a Table for bookmarks, like a Table Of Contents, but for Bookmarks
To add a table of contents for an individual section, you create a
bookmark for that section and specify that bookmark in the TOC field
code.
Add the bookmarks
Select the section that you want to create a table of contents for.
On the Insert tab, in the Links group, click Bookmark.
In the Bookmark name box, type a name for the bookmark.
Note Use a name that’s easy to remember, such as section1.
Click Add.
Repeat steps 1-4 for each section that you want to add a table of contents to.
Create the tables of contents
Click where you want to add a section table of contents.
On the Insert tab, in the Text group, click Quick Parts, and then click Field.
Under Field names, click TOC.
Click Field Codes, and then click Options.
In the Switches list, click b, click Add to Field, and then click OK.
In the Field codes box, type the name of the bookmark for that section.
Important Be sure that a space separates the b switch and the bookmark name.
Click OK.
Repeat steps 1-7 for each section TOC that you want to add to your document.
Source Add a table of contents for each section
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
add a comment |
I'd like to create a Table for bookmarks, like a Table Of Contents, but for Bookmarks
To add a table of contents for an individual section, you create a
bookmark for that section and specify that bookmark in the TOC field
code.
Add the bookmarks
Select the section that you want to create a table of contents for.
On the Insert tab, in the Links group, click Bookmark.
In the Bookmark name box, type a name for the bookmark.
Note Use a name that’s easy to remember, such as section1.
Click Add.
Repeat steps 1-4 for each section that you want to add a table of contents to.
Create the tables of contents
Click where you want to add a section table of contents.
On the Insert tab, in the Text group, click Quick Parts, and then click Field.
Under Field names, click TOC.
Click Field Codes, and then click Options.
In the Switches list, click b, click Add to Field, and then click OK.
In the Field codes box, type the name of the bookmark for that section.
Important Be sure that a space separates the b switch and the bookmark name.
Click OK.
Repeat steps 1-7 for each section TOC that you want to add to your document.
Source Add a table of contents for each section
I'd like to create a Table for bookmarks, like a Table Of Contents, but for Bookmarks
To add a table of contents for an individual section, you create a
bookmark for that section and specify that bookmark in the TOC field
code.
Add the bookmarks
Select the section that you want to create a table of contents for.
On the Insert tab, in the Links group, click Bookmark.
In the Bookmark name box, type a name for the bookmark.
Note Use a name that’s easy to remember, such as section1.
Click Add.
Repeat steps 1-4 for each section that you want to add a table of contents to.
Create the tables of contents
Click where you want to add a section table of contents.
On the Insert tab, in the Text group, click Quick Parts, and then click Field.
Under Field names, click TOC.
Click Field Codes, and then click Options.
In the Switches list, click b, click Add to Field, and then click OK.
In the Field codes box, type the name of the bookmark for that section.
Important Be sure that a space separates the b switch and the bookmark name.
Click OK.
Repeat steps 1-7 for each section TOC that you want to add to your document.
Source Add a table of contents for each section
edited Aug 23 '15 at 16:42
answered Dec 3 '14 at 17:08
DavidPostill♦
103k25223257
103k25223257
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
add a comment |
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
Thanks, but this does not answer completely my question. I need an automatic solution. Yours says I need to repeat the actions for every bookmark I want to have in my bookmark table. Plus, but maybe I do it wrong, at the end, it says that no entry has been found. Even though I put a bookmark name. So I think it does not work
– xhaltar
Dec 3 '14 at 17:15
1
1
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
You want an automated bookmark table? In that case you need to write some (VBA) script. Please edit with your new requirements.
– DavidPostill♦
Dec 3 '14 at 17:25
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
I don't want any VBA in my solution. Maybe it is not feasible.
– xhaltar
Dec 3 '14 at 17:37
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2fsuperuser.com%2fquestions%2f848097%2fadding-a-bookmark-table-in-a-document%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