Saturday, July 24, 2021

How to Page N of M in formula in crystal report

 numbervar n := PageNumber - 1;

numbervar m := TotalPageCount -1;

stringvar page := "Page " + toText(int(n)) + " of " + toText(int(m));

page

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...