Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Microsoft Office support MS Office support forum

Reply
 
LinkBack Thread Tools
Old 02-04-2009, 10:35 AM   #1 (permalink)
Registered User
 
Join Date: Feb 2009
Posts: 6
OS: xp


WORD 2003 - section break to an odd page

Hi i am having a problem with one of more simple functions.

and here it is:
i want to set my word document so that every section would start on to an odd page. simple right? wrong!

this is what i have done:
insert->break->Odd
... why?
I have a reset page numering so that it starts with 1 for each section
but this shouldn't be a factor.

--------------------------------------
any solutions for this? Am I just over complicating thing and is there an easier solution?

so my goal is to achive
Code:
page 1  - Header: "page 1 of 2" - body: has section break
page 2 -  Header: "page 2 of 2" - body: empty because its an even number
page 3  - Header: "page 1 of 2" - body: has text
page 4  - Header: "page 2 of 2" - body: has section break
page 5  - Header: "page 1 of 4" - body: has section break
...
currently getting
Code:
page 1  - Header: "page 1 of 1" - body: has section break
number
page 2  - Header: "page 1 of 2" - body: has text
page 3  - Header: "page 2 of 2" - body: has section break
...
mjk1 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 02-08-2009, 09:19 PM   #2 (permalink)
TSF Enthusiast
 
Join Date: Apr 2008
Location: Australia
Posts: 559
OS: Vista


Re: WORD 2003 - section break to an odd page

Hi mjk1,

Instead of struggling with odd & even Section breaks, you might find the following approach easier to manage.

A field coded as:
{IF{=MOD({PAGE},2)}= 1 {QUOTE 12}}
or
{IF{=MOD({PAGE},2)}= 1 "{QUOTE 12}¶
This page intentionally left blank¶
"}
will automatically insert a blank page if the page on which it occurs is an odd-numbered one. To get the same effect for an even-numbered page, change the '1' to '0'.

If you insert such a field after the final period (ie '.') in a given chapter, you can force Word to add a blank page whenever the pagination requires it.

Note: The field brace pairs (ie '{ }') for the above examples are created via Ctrl-F9 - you can't simply type them or copy & paste them from this post.
__________________
Cheers
macropod
(MS MVP -Word)

Last edited by macropod; 02-08-2009 at 09:21 PM.
macropod is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 05-27-2009, 09:54 AM   #3 (permalink)
Registered User
 
Join Date: Jan 2009
Posts: 6
OS: Vista


Re: WORD 2003 - section break to an odd page

I am having a similar problem and found this thread. I added the code as indicated from macropod but I receive the text ("page intentionally left blank") on every page regardless of whether it is odd or even.

So, to review:

I have my content. After the last period "." of a section (or chapter in my case) I add the code as indicated. Then I still use an odd page break?

I would like each of my chapters to end on an even page. If the page is blank I'd like the text "page intionally left blank to appear". What am I missing?
kirby123 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 05-27-2009, 11:47 PM   #4 (permalink)
TSF Enthusiast
 
Join Date: Apr 2008
Location: Australia
Posts: 559
OS: Vista


Re: WORD 2003 - section break to an odd page

Hi Kirby,

If you're getting ("page intentionally left blank") on every page regardless of whether it is odd or even, you haven't coded the field as described. Amongst other things, you need to be especially careful with the spaces and double quotes.
__________________
Cheers
macropod
(MS MVP -Word)
macropod is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-01-2009, 03:18 AM   #5 (permalink)
Registered User
 
Join Date: Feb 2009
Posts: 6
OS: xp


Post Re: WORD 2003 - section break to an odd page

the above code DOES work.

Bur I have found other solution to my problem:

- in my case this works:
section break to odd page

and also
in file -> page setup->layout :
Section start: odd page
headers and footers - Different odd and even must be checked or word does not count the pages right.

and that is it ...

i opted for this because i had this in generated file in RTF with other app.
and inputing macros and fields complicated things or at least make it LPITA
(Little Pain In The ***)

-------------------
but for your problem with the code above ... i have no problems with it (office 2007)

P.s.: the comma in above formula must be the comma separator in your regional settings ... i for one have a ; for the comma.
mjk1 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-02-2009, 11:46 AM   #6 (permalink)
Registered User
 
Join Date: Jan 2009
Posts: 6
OS: Vista


Re: WORD 2003 - section break to an odd page

I'm sorry but I must be doing something wrong. I am a whiz at formulas in Excel but not at all in Word. Can you define what the formula is trying to do? (i.e. what is "MOD" ?).

Or refer me to another resource, if you know of one. Word's online help is terrible for this.

Thanks.
kirby123 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-03-2009, 01:55 AM   #7 (permalink)
TSF Enthusiast
 
Join Date: Apr 2008
Location: Australia
Posts: 559
OS: Vista


Re: WORD 2003 - section break to an odd page

Hi Kirby,

The MOD function in Word does exactly the same as the MOD function in Excel - it returns the remainder after dividing one number by another. The only differernce is the syntax. To get an idea of what the function is doing, input the following formula into cell A1 in Excel:
=MOD(ROW(),2)
and copy down a few rows. What you'll get is a series of 1s and 0s. Now, if you embed the formula in A1 in an IF test as:
=IF(MOD(ROW(),2)=1,"This page intentionally left blank","")
and copy down, you'll get a series of cells in which every odd row displays 'This page intentionally left blank'. If you change the '1' in the formula to '0', it'll change the text display to the even rows.

In the Word formula, the {QUOTE 12} field generates a page break - you can see this if you press Ctrl-F9 to create a pair of field braces (ie '**}'), type 'QUOTE 12' between them and press F9.

In Word, it's important to remember that the field braces must be created via Ctrl-F9 - you can't type them or copy & paste from the posts in this forum. It's also important to preserve the spaces and use the double-quotes as indicated.
__________________
Cheers
macropod
(MS MVP -Word)
macropod is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-03-2009, 02:06 AM   #8 (permalink)
Registered User
 
Join Date: Feb 2009
Posts: 6
OS: xp


Re: WORD 2003 - section break to an odd page

i'am going to assume that you have ENG presets.

first for every bracket **} you must use ctrl+F9 to create.

MOD is a function that returns modulus ... ie. 9/2 = 4.5 or 4 with 1 modulus => so 4*2+1=9
the MOD function in this case returns 0 if the page is even or 1 if the page is odd.

the above function goes something like this:
if pagenumber is odd then pagebrake and write "this page ..." else do nothing

the field should be above your break to new chapter
mjk1 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-03-2009, 02:24 AM   #9 (permalink)
Registered User
 
Join Date: Feb 2009
Posts: 6
OS: xp


Re: WORD 2003 - section break to an odd page

btw ... you can toggle every bracket separately to see what part of the equation is causing the problem..

something like

{IF{=MOD({PAGE},2)}= 1 {QUOTE 12}}
{IF{=MOD(1,2)}= 1 {QUOTE 12}}
{IF 1= 1 {QUOTE 12}}
-- page break --

P.s.: **=...} there must not be a space between '**' and '='
mjk1 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 03:40 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85