MS WORD NUMBERING

MS WORD

    Next

  • 1. Image formatting
    My problem: I inherited a Word file with about 200 objects (maps) already inserted. I do not have the source files for these maps. I am having a terrible time formatting the objects and getting the captions to stick to the objects. I have all the captions correct and "keep with next" applied but once I go to "update fields" the images get moved around and random text gets turned into captions and moved!!!! I have had great luck with this with inserted .jpgs (not to mention they are smaller file sizes). My question: How do I convert these unknown origin images/objects/maps (I think they are .wmf but don't know for certain) into a more usable format such as .jpg? Or, how do I work with what I have to make my document dynamic without major disruption? Thanks! Leslie-Ann
  • 2. i canot remove a picture that comes up when i start up word
  • 3. How do I set the view size for existing Word document?
    Some of my Word documents open as a whole page view in print layout, I change the view to 100% in print layout and save but when they are opened again they are still in the whole page view? How can I set the view for 100% and keep it that way? These need to be posted online and be readable in Internet Explorer where the viewer may be unable to choose the view size.
  • 4. symbols for changing ^p to semi-colon
    i'm tryingto change a text document to an e-mailing list. at the end of each e-mail name is a paragraph symbol; i want to change it to the symbol for a semi-colon. when i get to find and replace i don't know what to replace the^p symbol with.

MS WORD NUMBERING

Postby QnJpZ2FkaWVyQmlsbA » Wed, 29 Jul 2009 15:45:01 GMT

I'm formatting a document that is 404 pages long that MS broken up in to 
sections with the last one being 187.  The sections are also not numbered in 
exact sequence but goes section 1 to 2 to 4 to 8 with no sections 3, 5, 6, 7 
on and on up to section 187.  The numbering from sections 1, 2 and 4 is the 
way it should be but from 4 to 8 it jumps from page 14 to page 16 when I'm 
working in the footer but 13 to 16 when I am working in the body.  Even 
though Word says there are 403 pages in the document the last page is 
numbered 440.  I've gone through them section by section and tried to change 
the numbering system but it refuses to work.  I've followed all the 
instructions on MS page but the number keep skipping.  Can anyone please help 
me?  I've spent hours working on this and tried dozens of solutions I found 
on the net but none of them work.  Please help.   

Re: MS WORD NUMBERING

Postby Doug Robbins - Word MVP » Wed, 29 Jul 2009 16:34:18 GMT

When you say sections, do you mean Sections as are separated one from 
another by Section Breaks.

I assume that you are talking about the page numbering.

However, you might just try running a macro containing the following code 
and see if it fixes up the numbering.

Dim i As Long
With ActiveDocument
    For i = 2 To .Sections.Count
        .Sections(i).Footers(1).PageNumbers.RestartNumberingAtSection = 
False
    Next i
    .Sections(1).Footers(1).PageNumbers.StartingNumber = 1
End With


-- 
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com






Re: MS WORD NUMBERING

Postby QnJpZ2FkaWVyQmlsbA » Thu, 30 Jul 2009 01:51:01 GMT





I'm not sure what you mean.  It is the sections the way MS word broke them 
up, not the different chapters in the book.


Yes.
 

I don't know how to do that.

Bill





Re: MS WORD NUMBERING

Postby Doug Robbins - Word MVP » Thu, 30 Jul 2009 06:39:19 GMT

MS Word only does what you make it do.  I have no idea what you mean by "the 
way MS word broke them up"

As for how to use the code that I sent to you, see the article "What do I do 
with macros sent to me by other newsgroup readers to help me out?at:

 http://www.**--****.com/ 


-- 
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com




>>
>>


>>> When you say sections, do you mean Sections as are separated one from
>>> another by Section Breaks.
>>
>> I'm not sure what you mean.  It is the sections the way MS word broke them
>> up, not the different chapters in the book.
>>
>>> I assume that you are talking about the page numbering.
>>
>> Yes.
>>
>>> However, you might just try running a macro containing the following code
>>> and see if it fixes up the numbering.
>>>
>>> Dim i As Long
>>> With ActiveDocument
>>>     For i = 2 To .Sections.Count
>>>         .Sections(i).Footers(1).PageNumbers.RestartNumberingAtSection =
>>> False
>>>     Next i
>>>     .Sections(1).Footers(1).PageNumbers.StartingNumber = 1
>>> End With
>>
>> I don't know how to do that.
>>
>> Bill
>>
>>>
>>>
>>> -- 
>>> Hope this helps.
>>>
>>> Please reply to the newsgroup unless you wish to avail yourself of my
>>> services on a paid consulting basis.
>>>
>>> Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
>>> "BrigadierBill"<< XXXX@XXXXX.COM >> wrote in 
>>> message


>>>>> I'm formatting a document that is 404 pages long that MS broken up in 
>>>>> to
>>>>> sections with the last one being 187.  The sections are also not 
>>>>> numbered
>>>>> in
>>>>> exact sequence but goes section 1 to 2 to 4 to 8 with no sections 3, 5, 
>>>>> 6,
>>>>> 7
>>>>> on and on up to section 187.  The numbering from sections 1, 2 and 4 is
>>>>> the
>>>>> way it should be but from 4 to 8 it jumps from page 14 to page 16 when 
>>>>> I'm
>>>>> working in the footer but 13 to 16 when I am working in the body.  Even
>>>>> though Word says there are 403 pages in the document the last page is
>>>>> numbered 440.  I've gone through them section by section and tried to
>>>>> change
>>>>> the numbering system but it refuses to work.  I've followed all the
>>>>> instructions on MS page but the number keep skipping.  Can anyone 
>>>>> please
>>>>> help
>>>>> me?  I've spent hours working on this and tried dozens of solutions I
>>>>> found
>>>>> on the net but none of them work.  Please help.
>>>
>>> 


Re: MS WORD NUMBERING

Postby QnJpZ2FkaWVyQmlsbA » Thu, 30 Jul 2009 15:30:01 GMT

I pasted the code into the macros but it says there is a syntax error in the 
4th line.

Dim i As Long
With ActiveDocument
For i = 2 To .Sections.Count
.Sections(i).Footers(1).PageNumbers.RestartNumberingAtSection =
False
Next i
.Sections(1).Footers(1).PageNumbers.StartingNumber = 1
End With 

What needs to be changed?

bill 

Re: MS WORD NUMBERING

Postby Graham Mayor » Thu, 30 Jul 2009 16:52:41 GMT

The 'False' on the 5th line has been prematurely wrapped and should be on 
the fourth line
See  http://www.**--****.com/ 

-- 
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor -  Word MVP

My web site www.gmayor.com
Word MVP web site  http://www.**--****.com/ 
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>







Re: MS WORD NUMBERING

Postby Doug Robbins - Word MVP » Thu, 30 Jul 2009 16:59:41 GMT

The word False should be on the same line as 
.Sections(i).Footers(1).PageNumbers.RestartNumberingAtSection =


-- 
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com






Re: MS WORD NUMBERING

Postby QnJpZ2FkaWVyQmlsbA » Fri, 31 Jul 2009 00:00:01 GMT

GREAT!   I went through it page by page after running the macro and it's just 
the way it should be.  It's a great relief.

Will this run automatically every time I open the file or MS Word?





Re: MS WORD NUMBERING

Postby Stefan Blom » Fri, 31 Jul 2009 02:40:34 GMT

In a single "problem" document, it shouldn't be necessary to run the macro 
more than once.

-- 
Stefan Blom
Microsoft Word MVP











Re: MS WORD NUMBERING

Postby QnJpZ2FkaWVyQmlsbA » Fri, 31 Jul 2009 03:36:01 GMT

Checked it a few times and it's working great.  Thanks everyone.








Re: MS WORD NUMBERING

Postby Doug Robbins - Word MVP » Fri, 31 Jul 2009 06:53:14 GMT

No, it will not run automatically, but then it should not be necessary for 
it to do so.  Unless those settings are changed by the user, by default, 
they would be the same as the way they are set by the code in the macro.

-- 
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com






Re: MS WORD NUMBERING

Postby Suzanne S. Barnhill » Sat, 08 Aug 2009 02:11:02 GMT

I see you've gotten the result you need with the macro Doug provided, but 
note that the reason Word is inserting (Continuous) section breaks is 
undoubtedly that you have changed section-level formatting within a page, 
most likely changing the number of columns. In order to access the page 
numbering for these mid-page sections, you must click in the section itself, 
go to Insert | Page Numbers, click on Format, and choose "Continue from 
previous section." After clicking OK in the Page Number Format dialog, be 
sure to click Close (not OK) in the Page Numbers dialog so you don't insert 
another number.

-- 
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
 http://www.**--****.com/ 







Similar Threads:

1.MS Word Numbering

Have developed some fairly long MS Word documents that have hierarchical 
numbering of sections, paragraphs, subparagraphs, etc, in the form 

1. Heading
  1.1 Subheading
     1.1.1 Paragraph
          1.1.1.1 SWubparagraph

etc

This is for a set of governing procedures for an organization. The 
procedures are expected to have a useful life of many years, and will be 
revised from time to time. 

It is important to keep the numbering of each specific procedure, 
paragraph, subparagraph, etc., fixed for ease of reference. There may be 
occasions when the people maintaining the documents consciously decide 
to change numbering for a good reason, but this should not happen 
inadvertently.

Problem:

MS Word treats such numbers as being automatically assigned and 
reassigned as changes are made. We don't want this to happen. We want 
the numbers to change only if we specifically and consciously change 
them.

Is there a way to turn off the automatic outline numbering in Word? I 
have tried all sorts of things, and no matter what I do, Word continues 
to insist on automatically renumbering the paragraphs.

Have tried manually typing in the numbers as the first part of each 
paragraph. Have tried doing it in a plain text document, with manual 
numbers, then opening that in Word. Have made sure outlining is 
deselected, etc, etc., but regardless of all these efforts, Word goes 
back to automatic numbering as soon as I make changes to the document.

How can I make Word stop doing this?

I suppose one answer is to use a different word processing program, one 
that is less insistent in imposing its "helpfulness" on the user. 
Appleworks, for instance. Trouble is, all the other people involved have 
MS Word as their main word processor.

Ideas?

Bill

-- 
For email, remove invalid.

2.MS WORD Number of Copies to Print

Anyone know of a way to determine the number of copies in a MS Word print job

I have a printer permanently paused.  I have an app that monitors the print queue and only displays jobs for the user that has logged into the app.  I am able to get the number of copies for Notepad and Powerpoint.  Excel sends each copy individually so that's not a problem either

Problem: MS Word!  I can't find a way to get the number of copies

Your help is appreciated... thank

3.A way to have MS Word number multiple copies of a single document

Is there a way to have Word number multiple copies of a single document? For 
example...I have a 3 page document that I want 50 copies of for 50 people. 
The first copy be 1-1, 1-2,1-3 the second 2-1, 2-2, 2-3, the 10th, 10-1, 
10-2, 10-3...etc.

4.A way to have MS Word number multiple copies of a single docum

5.MS Word Numbering

Hi, Gurus:

    Could anyone help to see if this is possible?  There are a few numbered
paragraphs.  The StartAt is not necessarily 1.  When user select a few
paragraphs -- might not from the first one, is there anyway I can loop
through the Selection.Paragraphs and know what is its Numbering? i.e.

3) AAA
4) BBB
5) CCC
...

    If 4) and 5) are selected (skip 3), when I loop through
Selection.Paragraphs, I would like to know paragraph BBB is 4, and paragraph
CCC is 5.

    Thanks.

James


6. Exporting from MS Access to MS Word - maximum number of characters

7. Word 2k Outline Numbering - Number format - Number style - Previous Level Number

8. Code to add custom auto number to MS Word bookmark



Return to MS WORD

 

Who is online

Users browsing this forum: No registered users and 46 guest