If you Press Alt+F9, in your document where the page number appears, you
will see { PAGE } Replace that with { SECTION } then press Alt+F9 to toggle
off the field codes.

Signature
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
> Thanks for your response, but could you explain how I go about using a
> {section} field. I am a beginner in doing this. Thanks again!
[quoted text clipped - 6 lines]
>>>
>>> Kbrad28
kbrad28 - 03 May 2007 15:34 GMT
Thanks, I will try that and let you know how it goes.
>If you Press Alt+F9, in your document where the page number appears, you
>will see { PAGE } Replace that with { SECTION } then press Alt+F9 to toggle
[quoted text clipped - 5 lines]
>>>>
>>>> Kbrad28
kbrad28 - 03 May 2007 15:40 GMT
Eureka!!! Everything works as it should. Thanks!
>If you Press Alt+F9, in your document where the page number appears, you
>will see { PAGE } Replace that with { SECTION } then press Alt+F9 to toggle
[quoted text clipped - 5 lines]
>>>>
>>>> Kbrad28
kbrad28 - 03 May 2007 16:24 GMT
One issue, the { SECTION } works, but if one of my letters run longer then
one page it doesn't go to the next number it stays at page one, how do I go
about to correct this?
>If you Press Alt+F9, in your document where the page number appears, you
>will see { PAGE } Replace that with { SECTION } then press Alt+F9 to toggle
[quoted text clipped - 5 lines]
>>>>
>>>> Kbrad28
Doug Robbins - Word MVP - 03 May 2007 18:20 GMT
In that case, revert to the use of the { PAGE } field for the page numbers,
and execute the merge to a new document and then run the following macro on
that document
Dim i As Long
With ActiveDocument
For i = 2 To .Sections.Count
.Sections(i).Headers(wdHeaderFooterPrimary).PageNumbers.RestartNumberingAtSection
= False
Next i
End With

Signature
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
> One issue, the { SECTION } works, but if one of my letters run longer
> then
[quoted text clipped - 12 lines]
>>>>>
>>>>> Kbrad28
kbrad28 - 03 May 2007 19:00 GMT
Thanks so much Mr. Robbins for your responses! I just have one more question.
Is it possible to format a macro to use a specific font, size, color, etc?
>In that case, revert to the use of the { PAGE } field for the page numbers,
>and execute the merge to a new document and then run the following macro on
[quoted text clipped - 13 lines]
>>>>>>
>>>>>> Kbrad28
Doug Robbins - Word MVP - 03 May 2007 20:43 GMT
font name, size and color are not characteristics of a macro, they are
charactistics of characters. You can certainly use a macro to apply such
characteristics. The following code will apply the font, size and color
indicated to the text that is selected:
With Selection.Font
.Name = "Arial"
.Size = 24
.Color = wdColorBrightGreen
End With

Signature
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
> Thanks so much Mr. Robbins for your responses! I just have one more
> question.
[quoted text clipped - 20 lines]
>>>>>>>
>>>>>>> Kbrad28
kbrad28 - 04 May 2007 14:13 GMT
Thanks this is exactly what I was looking for. Everything works!! Thank you.
>font name, size and color are not characteristics of a macro, they are
>charactistics of characters. You can certainly use a macro to apply such
[quoted text clipped - 12 lines]
>>>>>>>>
>>>>>>>> Kbrad28