Search code examples
crystal-reportscrystal-reports-2008

Change the name of Page N of M in Crystal Report


​Hi, I am creating a total quantity label statement in Crystal. I am using the Special Field Page N of M in my Details section

Is there a way to remove the text "Page" so that it will just display 1/2" in place instead of "Page 1/2"

Thanks,


Solution

  • The Special Field can't be modified, but you can create a formula to get the desired output:

    CStr(PageNumber, "#") & "/" & CStr(TotalPageCount, "#")