Page numbering one every two on Word 2007

damien -  
Mike-31 Posted messages 18405 Registration date   Status Contributor Last intervention   -
Hello,
hello
I want to number only the odd pages of my report. With normal numbering, I get 1, 3, 5...
could someone kindly indicate the complete formula so that the page numbered 3 becomes 2, the one numbered 5 becomes 3, etc.?
thank you very much

Configuration: Windows 7 / Safari 535.19

1 answer

  1. Mike-31 Posted messages 18405 Registration date   Status Contributor Last intervention   5 147
     
    Hi,

    Not easy but we're getting there. Follow these instructions

    Continuous pagination (1, 2, 3, etc...) odd page
    Start by setting up the odd page pagination (insert/Page number check different odd and even pages)
    Activate the field (insert/header or footer depending on the pagination chosen,
    Modify the header.
    To display the field codes click on Alt+F9
    which should look like { PAGE \* MERGEFORMAT }
    Replace the field with
    IF =MOD(PAGE;2) = 0;"""=(PAGE-1) / 2+1"
    Highlight each part of the field example
    PAGE and validate with Ctrl and function key F9
    to get { PAGE } continue by selecting =MOD({ PAGE };2) confirm with the keys Ctrl and F9
    to get { =MOD({ PAGE };2) }
    Continue to obtain this final formula
    { IF { =MOD({ PAGE };2) } = 0 """{ =({ PAGE }-1) / 2+1 }" }
    Confirm the field formula with Alt and F9

    --
    Cheers
    Mike-31

    A period of failure is a perfect time to sow the seeds of knowledge.
    0