hexagon logo

add page numbers 2013 sp2

Hi all,
I am trying to DD Pgwe numbers to my report, only I can't find out which report I a using. so I am making the change acroos the board.
Can anyone tell me how to find out which report my programs use?
I am adding a text box to the bottom of the report and then right clicking on it to change the properties.
I go to the text 1 and text 2 and left click to the right of the text property and it automatically fills in
with the page number and number of pages code. That didn't work. So I then put a check into the box to the left of the
word text and it came up with how i want to promt the operator. I do not want to prompt the operator. I just want page of X pages at the bottom of my reports.
Can any point me in the right direction to accomplish this?

Floyd
Parents
  • if you don't want to use tracefields you can use.

    =INT(VARIABLE("SERNUM1"))

    In the header field (sernum1 is the variable from the comment)

    I use a variable name that is just or ONLY used for the header information.
    This way V1 or V32 are names used in a program and I will not over write or use it accidently.


    C2 =COMMENT/INPUT,NO,FULL SCREEN=YES,
    Enter serial Number:
    ASSIGN/SERNUM1=C2.INPUT
Reply
  • if you don't want to use tracefields you can use.

    =INT(VARIABLE("SERNUM1"))

    In the header field (sernum1 is the variable from the comment)

    I use a variable name that is just or ONLY used for the header information.
    This way V1 or V32 are names used in a program and I will not over write or use it accidently.


    C2 =COMMENT/INPUT,NO,FULL SCREEN=YES,
    Enter serial Number:
    ASSIGN/SERNUM1=C2.INPUT
Children
No Data