serial numbering

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I set up a field that will print a new serial number on each page when
printed?
 
Depends on what the serial number has to look like. If it is literally on
each page, then a function involving the page number should do it, eg:

SN: ABC_{ = { PAGE } + 1000 }

to give you SN: ABC_1001, SN: ABC_1002, etc
 
Back
Top