Jump to content

Problem with CurrentRecordNumber


Fletch

Recommended Posts

I'm using the Current Record Number Rule. The records I'm trying to print are 49001-50001. Here's what my rule looks like:

 

return CurrentRecordNumber ();

 

My outcome is 1-1000. In the Compose dialog, I'm enetering 49001-50001 for the page range. What am I missing?

:cool:

Link to comment
Share on other sites

Are you trying to print records 49001-50001 from the data (as in, you have a data file with at least 50,001 records), or are you trying to print 1,000 pages with numbers 49001-50001 on them?

 

My guess is you are trying to do the latter in which case your code should be:

return CurrentRecordNumber() + 49000;

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...