cancel
Showing results for 
Search instead for 
Did you mean: 

How do I change the start page number in crystal report ?

Former Member
0 Kudos

hi all

i have report

I want to do change the page number 1 and make it 5

any help please

thank you all

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

if you always want the page number to be x more than the actual page number you can create a formula like this and place it in the page header/page footer:

//{@PageNumberChange}

pagenumber + 3 //adds 3 to the page number (it will start with 4 instead of 1)

Former Member
0 Kudos

thank you

I've solved the problem

Answers (2)

Answers (2)

Former Member
0 Kudos

thank you but

Where do I put this formula exactly?

Former Member
0 Kudos

Hi

Place this formula either on your page header or page footer.

Thanks,

Sastry

Former Member
0 Kudos

Hi

Place this formula either on your page header or page footer.

Thanks,

Sastry

Former Member
0 Kudos

I have a problem in the code not a formula

Where do I put the code

Edited by: vbgedo on May 16, 2011 5:33 PM

Former Member
0 Kudos

I have a problem in the code not a formula

Where do I put the code

Numbervar x:=4;

x:=x+1;

Former Member
0 Kudos

Hi

right click on your formula fields from Field explorer and create new and place the code in that and plce this formual in yoru page header or page footer.

Thanks,

Sastry

Former Member
0 Kudos

not work man

Show only 5.000 in all pages

i used vb6 and crystal report 10

Former Member
0 Kudos

Hi,

Page number always start with 1 if you want to your page number to start with 5 then try this formula in place of your page number special field :

Whileprintingrecords;

Numbervar x:=4;

x:=x+1;

This will print 5 on your first page.

Thanks,

Sastry