Can I delete number list items but retain original numbers?

S

sljorgie

I have a large numbered list. I now want to delete certain items from the
list but want to retain the original numbers for quick reference to the
original list.

1. Text A
2. Text B
3. Text C

Deleting Text B becomes

1. Text A
3. Text C
 
R

Robert M. Franz (RMF)

Hi sljorgie
I have a large numbered list. I now want to delete certain items from the
list but want to retain the original numbers for quick reference to the
original list.

1. Text A
2. Text B
3. Text C

Deleting Text B becomes

1. Text A
3. Text C

if you have used the usual numbering approach in Word, the following VBA
code lines may help:

To convert all list numbering in the selection:
Selection.Range.ListFormat.ConvertNumbersToText

To convert all lis numbering in the whole document:
ActiveDocument.Range.ListFormat.ConvertNumbersToText

HTH
Robert
 
H

Henk57

Yes. Select the numbered item, including the pilcrow marking the end of
the paragraph, and format the text as hidden (In the format Format/Font
menu).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top