Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 12-18-2016, 05:11 PM
lostenfeld lostenfeld is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 10 List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Novice
List Numbering Set Numbering Value shows missing numbers as hidden text
 
Join Date: Jul 2016
Posts: 9
lostenfeld is on a distinguished road
Default List Numbering Set Numbering Value shows missing numbers as hidden text

We have searched google as well as this forum and can’t find anything on this issue.
We are having a problem with List Numbering in Word (Microsoft Professional Plus 2013, 32 bit) whereby setting a number value, in order to skip numbers, actually brings up all of those missing numbers but applies hidden text. We do not have the option of turning off hidden text in our environment as it needs to be shown for various reasons.
The set number value issue doesn’t happen in our templates that use heading style numbering so it just an issue limited to list numbering. This wasn’t an issue in previous versions of Word and we can’t work out what has changed.
Attached is a copy of a document containing our list numbering styles – just in case that is the problem – and another document containing screen captures.
We understand it may be a new feature but if it is not, we hope someone can tell us what we have done wrong with our numbering.
Attached Files
File Type: docx Document with Style Numbering.docx (20.5 KB, 21 views)
File Type: docx Screenshots.docx (35.8 KB, 13 views)
Reply With Quote
  #2  
Old 12-20-2016, 06:43 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is online now List Numbering Set Numbering Value shows missing numbers as hidden text Windows 7 64bit List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 3,872
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

What you are describing is how Word's "Advance value (skip numbers)" option in the Set Numbering Value dialog box works.

Alternatively, you can choose "Start a new list" in that same dialog box and type in the starting value you want for the new list.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
  #3  
Old 12-20-2016, 06:50 PM
lostenfeld lostenfeld is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 10 List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Novice
List Numbering Set Numbering Value shows missing numbers as hidden text
 
Join Date: Jul 2016
Posts: 9
lostenfeld is on a distinguished road
Default

Thanks for your response Stefan. Unfortunately the start new list is greyed out for some reason. I can only select the tick box for "Advance value (skip numbers)", or "set value to:", both the "start new list" and "continue from previous list" are greyed out. I do not know if it is a Word option I have set incorrectly but I cannot find it if it is.
Reply With Quote
  #4  
Old 12-21-2016, 04:33 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is online now List Numbering Set Numbering Value shows missing numbers as hidden text Windows 7 64bit List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 3,872
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

I see what you mean. For some reason, the "Start new list" option is unavailable. I worked around it by applying an unnumbered style (with a hanging indent) and inserting a LISTNUM field which restarts the numbering. See attachment.
Attached Files
File Type: docx Modified -- Document with Style Numbering.docx (20.6 KB, 29 views)
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
  #5  
Old 12-21-2016, 05:05 AM
Guessed's Avatar
Guessed Guessed is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 10 List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,932
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

This is not something I've dabbled with before but I am getting the same behaviour as you in Word 2013 and don't know if it was different in earlier versions.

In any case, perhaps you need to use a macro to create a new ListTemplate each time you need to jump.
Code:
Sub Macro3()
  Dim aLT As ListTemplate
  Set aLT = ActiveDocument.ListTemplates.Add(OutlineNumbered:=True)
  With aLT.ListLevels(1)
    .NumberFormat = "%1."
    .TrailingCharacter = wdTrailingTab
    .NumberStyle = wdListNumberStyleArabic
    .NumberPosition = CentimetersToPoints(0)
    .Alignment = wdListLevelAlignLeft
    .TextPosition = CentimetersToPoints(1)
    .TabPosition = CentimetersToPoints(1)
    .ResetOnHigher = 0
    .StartAt = InputBox("Start where?", "Re-Start Me Up", 9)
    .LinkedStyle = ""
  End With
  Selection.Range.ListFormat.ApplyListTemplateWithLevel ListTemplate:=aLT, _
      ContinuePreviousList:=False, ApplyTo:=wdListApplyToThisPointForward, _
      DefaultListBehavior:=wdWord10ListBehavior
End Sub
Once you have done this to a list, if you want to add a second break, press Ctrl-Q to reset the paragraph(s) and then run the macro again.
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
  #6  
Old 12-21-2016, 03:55 PM
lostenfeld lostenfeld is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 10 List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Novice
List Numbering Set Numbering Value shows missing numbers as hidden text
 
Join Date: Jul 2016
Posts: 9
lostenfeld is on a distinguished road
Default

Thank you, both the LISTNUM and macro are very good options. I just tried the LISTNUM and it works perfectly.
Reply With Quote
  #7  
Old 12-21-2016, 04:14 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is online now List Numbering Set Numbering Value shows missing numbers as hidden text Windows 7 64bit List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 3,872
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

I should add that the LISTNUM example I posted is based on the assumption that you don't have any "intervening" lists. If you do have more than one list, the simple solution I suggested will not work.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
  #8  
Old 01-02-2017, 06:33 PM
freda0255 freda0255 is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 7 64bit List Numbering Set Numbering Value shows missing numbers as hidden text Office 2010 32bit
Novice
 
Join Date: Jun 2011
Location: Chicago
Posts: 11
freda0255 is on a distinguished road
Default

I noticed that in the sample document the numbering scheme uses a List Number style (Multilevel List, Define New List Style) as opposed to a MultiLevel List (Multilevel List, Define New MultiLevel List).

In my testing, the problem you're experiencing does not occur with a Multi-Level List ("MLL").

Based on the name of your styles, I'm guessing you are in legal; so am I. In the case of your sample document the "package" is called "M&ANumbering."

Stefan's workaround was also successful for me. However, I have another solution that you might find useful:

1. Open your sample document.
2. Go to the Developer tab, click Document Template, Organizer.
3. On the left, scroll to "M&A Numbering", click Delete; click "Yes"; click Close
4. Select your list, press Ctrl+Q
5. Right-Click on number 4; set number value to 9

Basically, what we've done here is convert the list number style to a MLL.
Is this how you expected the list to work?
Reply With Quote
  #9  
Old 01-02-2017, 09:31 PM
lostenfeld lostenfeld is offline List Numbering Set Numbering Value shows missing numbers as hidden text Windows 10 List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Novice
List Numbering Set Numbering Value shows missing numbers as hidden text
 
Join Date: Jul 2016
Posts: 9
lostenfeld is on a distinguished road
Default

Thank you so much - that is exactly what I needed to happen - I had no idea I had set up my numbering incorrectly.
I am about to start a new project redoing our templates so I will ensure I set up the future numbering correctly.
Reply With Quote
  #10  
Old 01-03-2017, 04:27 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is online now List Numbering Set Numbering Value shows missing numbers as hidden text Windows 7 64bit List Numbering Set Numbering Value shows missing numbers as hidden text Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 3,872
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

Note that list styles also make use of multilevel list formatting. In the Modify Style dialog box for a list style, you can access its nine numbering levels via the Format button (click Format | Numbering).
Attached Images
File Type: png ModifyListStyle.PNG (123.4 KB, 32 views)
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
List Numbering Set Numbering Value shows missing numbers as hidden text Add Text to Table of Contents removes my numbering list bell Word 1 09-17-2015 06:05 AM
Heading numbering skips numbers tpen3219 Word 2 07-21-2014 09:57 PM
List Numbering position on right text vanzilz Word 3 02-26-2014 12:45 AM
Numbering issue gap bettween 1.1 and text lower and higer numbering leave no gap Turtlesrun Word 3 02-21-2014 04:48 AM
List Numbering Set Numbering Value shows missing numbers as hidden text List Style Numbering picks up out of order number from LATER list spthomas Word 12 12-16-2013 05:23 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:28 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft