#1   Report Post  
HowardC HowardC is offline
Junior Member
 
Posts: 0
Default Page Numbering

I am using Microsoft word and have set up two columns per page. I would like to number the first page page on the left as 1 at the bottom and the page on the right as 2, the next page on the left to be 3 and the one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Page Numbering

Create two text boxes which are anchored to the page header. Drag one text box
so that it displays at the bottom of the left "page" and drag the other box so
that it displays at the bottom of the "right" page. Clear the borders as
appropriate.

In the left text box, enter the following field code:

{ = 2*{ PAGE } - 1 }

In the right text box, you'll need:

{ = 2*{ PAGE } }

To insert each pair of field delimiters, { }, press Ctrl+F9. Type in the code as
shown above.

You can update the fields by switching to Print Preview (the Backstage view in
Word 2010) and back to your previous view; you can use Ctrl+F2 followed by ESC.

Note that these calculated page numbers won't be reflected in an automatic table
of contents.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill[_3_] Suzanne S. Barnhill[_3_] is offline
external usenet poster
 
Posts: 52
Default Page Numbering

One approach is to use "2 pages per sheet" (under "Multiple pages" on the
Margins tab of Page Setup) instead of two columns. This divides the
(landscape) page into two separate (portrait) halves and allows you to treat
each one as a separate page, including adding page numbers.

"HowardC" wrote in message ...


I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC

  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill[_3_] Suzanne S. Barnhill[_3_] is offline
external usenet poster
 
Posts: 52
Default Page Numbering

Why use text boxes instead of just aligning the fields left and right in the
page footer?

"Stefan Blom" wrote in message ...

Create two text boxes which are anchored to the page header. Drag one text
box
so that it displays at the bottom of the left "page" and drag the other box
so
that it displays at the bottom of the "right" page. Clear the borders as
appropriate.

In the left text box, enter the following field code:

{ = 2*{ PAGE } - 1 }

In the right text box, you'll need:

{ = 2*{ PAGE } }

To insert each pair of field delimiters, { }, press Ctrl+F9. Type in the
code as
shown above.

You can update the fields by switching to Print Preview (the Backstage view
in
Word 2010) and back to your previous view; you can use Ctrl+F2 followed by
ESC.

Note that these calculated page numbers won't be reflected in an automatic
table
of contents.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC


  #5   Report Post  
HowardC HowardC is offline
Junior Member
 
Posts: 0
Default

Hi Stefan

Thanks for the reply. I clicked in insert text box and dragged this to the bottom on the left of page 1 and copied your code and did the same for the right page. What do I do after this? See attached sample data

Your assistance is most appreciated
Attached Files
File Type: zip Risk management.Page Numbering two Columns.zip (8.8 KB, 150 views)


  #6   Report Post  
Venky62 Venky62 is offline
Junior Member
 
Posts: 19
Default

Copying code won't work in this case. You have to insert a blank field by pressing Ctrl+F9. This will place two curly brackets {} on your page. Place your cursor within the two brackets and type =2* and then press Ctrl+F9 again. Another pair of {} brackets will be inserted. Type within the brackets {PAGE} and then type -1 inside the closing curly bracket. Then right click on the code and select Update field from the shortcut menu, or press F9. You will see your page numbers.

Brilliant solution given by Stefan.

Quote:
Originally Posted by HowardC View Post
Hi Stefan

Thanks for the reply. I clicked in insert text box and dragged this to the bottom on the left of page 1 and copied your code and did the same for the right page. What do I do after this? See attached sample data

Your assistance is most appreciated
  #7   Report Post  
HowardC HowardC is offline
Junior Member
 
Posts: 0
Default

Quote:
Originally Posted by Venky62 View Post
Copying code won't work in this case. You have to insert a blank field by pressing Ctrl+F9. This will place two curly brackets {} on your page. Place your cursor within the two brackets and type =2* and then press Ctrl+F9 again. Another pair of {} brackets will be inserted. Type within the brackets {PAGE} and then type -1 inside the closing curly bracket. Then right click on the code and select Update field from the shortcut menu, or press F9. You will see your page numbers.

Brilliant solution given by Stefan.
Thanks for the wxplanation much appreciated
  #8   Report Post  
HowardC HowardC is offline
Junior Member
 
Posts: 0
Default

Quote:
Originally Posted by Suzanne S. Barnhill[_3_] View Post
One approach is to use "2 pages per sheet" (under "Multiple pages" on the
Margins tab of Page Setup) instead of two columns. This divides the
(landscape) page into two separate (portrait) halves and allows you to treat
each one as a separate page, including adding page numbers.

"HowardC" wrote in message ...


I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC
Hi Suzanne

Thanks for the help, much appreciated
  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Page Numbering

Of course! That would be the easiest approach.

--
Stefan Blom
Microsoft Word MVP





"Suzanne S. Barnhill" wrote in message
...
One approach is to use "2 pages per sheet" (under "Multiple pages" on the
Margins tab of Page Setup) instead of two columns. This divides the
(landscape) page into two separate (portrait) halves and allows you to treat
each one as a separate page, including adding page numbers.

"HowardC" wrote in message ...


I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC


  #10   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Page Numbering

Very good question. Unless the page numbers should be in, say, the left and
right margins, text boxes won't be necessary. Using paragraph alignment or tab
stops for more precision, or "Two pages per sheet," would do the trick; you are
quite right.

--
Stefan Blom
Microsoft Word MVP





"Suzanne S. Barnhill" wrote in message
...
Why use text boxes instead of just aligning the fields left and right in the
page footer?

"Stefan Blom" wrote in message ...

Create two text boxes which are anchored to the page header. Drag one text box
so that it displays at the bottom of the left "page" and drag the other box so
that it displays at the bottom of the "right" page. Clear the borders as
appropriate.

In the left text box, enter the following field code:

{ = 2*{ PAGE } - 1 }

In the right text box, you'll need:

{ = 2*{ PAGE } }

To insert each pair of field delimiters, { }, press Ctrl+F9. Type in the code
as
shown above.

You can update the fields by switching to Print Preview (the Backstage view in
Word 2010) and back to your previous view; you can use Ctrl+F2 followed by
ESC.

Note that these calculated page numbers won't be reflected in an automatic
table
of contents.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC




  #11   Report Post  
Posted to microsoft.public.word.docmanagement
Peter T. Daniels Peter T. Daniels is offline
external usenet poster
 
Posts: 3,215
Default Page Numbering

But if he wants to have two tall, thin columns on a normal vertical
page, he'd have to set a Custom Paper Size of 4.25" x 11" (or whatever
the DIN equiivalent is), with Mirror Margins, and set the gutter to as
close to 0 as Word will allow.

On Jul 29, 7:44*am, "Stefan Blom"
wrote:
Of course! That would be the easiest approach.

--
Stefan Blom
Microsoft Word MVP

"Suzanne S. Barnhill" wrote in ...



One approach is to use "2 pages per sheet" (under "Multiple pages" on the
Margins tab of Page Setup) instead of two columns. This divides the
(landscape) page into two separate (portrait) halves and allows you to treat
each one as a separate page, including adding page numbers.


"HowardC" *wrote in ...


I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc


It would be appreciated if someone could advise me on how to set this up

  #12   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Page Numbering

You can't copy and paste the field codes from a newsgroup message. As I wrote in
my first message in this thread, you must insert the field delimiters, { }, by
pressing Ctrl+F9 and type in the rest of the commands.

Use F9 to update the fields at the insertion point, and use Alt+F9 to show/hide
fields codes.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

Hi Stefan

Thanks for the reply. I clicked in insert text box and dragged this to
the bottom on the left of page 1 and copied your code and did the same
for the right page. What do I do after this? See attached sample data

Your assistance is most appreciated


+-------------------------------------------------------------------+
|Filename: Risk management.Page Numbering two Columns.zip |
|Download: http://www.wordbanter.com/attachment.php?attachmentid=133|
+-------------------------------------------------------------------+



--
HowardC


  #13   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill[_3_] Suzanne S. Barnhill[_3_] is offline
external usenet poster
 
Posts: 52
Default Page Numbering

Even if they need to be in the margins, you can always use negative left and
right indents on the header/footer.

"Stefan Blom" wrote in message ...

Very good question. Unless the page numbers should be in, say, the left and
right margins, text boxes won't be necessary. Using paragraph alignment or
tab
stops for more precision, or "Two pages per sheet," would do the trick; you
are
quite right.

--
Stefan Blom
Microsoft Word MVP





"Suzanne S. Barnhill" wrote in message
...
Why use text boxes instead of just aligning the fields left and right in
the page footer?

"Stefan Blom" wrote in message ...

Create two text boxes which are anchored to the page header. Drag one text
box
so that it displays at the bottom of the left "page" and drag the other
box so
that it displays at the bottom of the "right" page. Clear the borders as
appropriate.

In the left text box, enter the following field code:

{ = 2*{ PAGE } - 1 }

In the right text box, you'll need:

{ = 2*{ PAGE } }

To insert each pair of field delimiters, { }, press Ctrl+F9. Type in the
code as
shown above.

You can update the fields by switching to Print Preview (the Backstage
view in
Word 2010) and back to your previous view; you can use Ctrl+F2 followed by
ESC.

Note that these calculated page numbers won't be reflected in an automatic
table
of contents.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC


  #14   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Page Numbering

I was thinking of situations where you can't do it with negative indents.

--
Stefan Blom
Microsoft Word MVP




"Suzanne S. Barnhill" wrote in message ...

Even if they need to be in the margins, you can always use negative left and
right indents on the header/footer.

"Stefan Blom" wrote in message ...

Very good question. Unless the page numbers should be in, say, the left and
right margins, text boxes won't be necessary. Using paragraph alignment or
tab
stops for more precision, or "Two pages per sheet," would do the trick; you
are
quite right.

--
Stefan Blom
Microsoft Word MVP





"Suzanne S. Barnhill" wrote in message
...
Why use text boxes instead of just aligning the fields left and right in
the page footer?

"Stefan Blom" wrote in message ...

Create two text boxes which are anchored to the page header. Drag one text
box
so that it displays at the bottom of the left "page" and drag the other
box so
that it displays at the bottom of the "right" page. Clear the borders as
appropriate.

In the left text box, enter the following field code:

{ = 2*{ PAGE } - 1 }

In the right text box, you'll need:

{ = 2*{ PAGE } }

To insert each pair of field delimiters, { }, press Ctrl+F9. Type in the
code as
shown above.

You can update the fields by switching to Print Preview (the Backstage
view in
Word 2010) and back to your previous view; you can use Ctrl+F2 followed by
ESC.

Note that these calculated page numbers won't be reflected in an automatic
table
of contents.

--
Stefan Blom
Microsoft Word MVP





"HowardC" wrote in message
...

I am using Microsoft word and have set up two columns per page. I would
like to number the first page page on the left as 1 at the bottom and
the page on the right as 2, the next page on the left to be 3 and the
one on the right to be 4 etc

It would be appreciated if someone could advise me on how to set this up




--
HowardC


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Starting page numbering 21 at page 21 but no numbering preceding p xppuser Page Layout 10 June 18th 09 12:29 AM
?Footnote-numbering seperate in chapters; page-numbering normal? john schreij Page Layout 1 May 3rd 09 11:41 AM
Difficult Page Numbering/Section Break/Line Numbering Issue SuzieQ Page Layout 3 September 25th 08 10:55 PM
Table of contents numbering not consistent with page numbering format srd Tables 1 July 9th 06 07:49 PM
How do I restart page numbering when numbering sections differentl Ralph Microsoft Word Help 1 April 21st 06 06:19 PM


All times are GMT +1. The time now is 09:29 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"