how i get page numbers in alternative pages?

J

jayakumar

I want to print page number alternate page only,that means odd pages
only,like page 1 as 1,
page 3as 2,
page 5 as 3 .......
My requriment is:page 1 data, page 2 is term and conditions it comes back
side while printing so page 2 is not in count.
 
M

macropod

Hi jayakumar,

Try using this field coding in the header or footer:
{=IF(MOD({PAGE},2)=1,INT(({PAGE}+1)/2),-1) \# 0;;}
where the field braces (ie '{}') are created in pairs via Ctrl-F9.

Cheers
 
Top