Dec 12, 2006 #1 Corres Technical User Jun 13, 2006 87 CA Hello, CR 9 Oracle 9i Please help me How to format special field page No of M to be displayed as 1/3 or 1/1 Thank you!
Hello, CR 9 Oracle 9i Please help me How to format special field page No of M to be displayed as 1/3 or 1/1 Thank you!
Dec 12, 2006 1 #2 GJParker Programmer Jul 4, 2002 1,614 GB Create a formula Code: PageNumber & "/" & TotalPageCount Gary Parker MIS Data Analyst Manchester, England Upvote 0 Downvote
Create a formula Code: PageNumber & "/" & TotalPageCount Gary Parker MIS Data Analyst Manchester, England
Dec 12, 2006 1 #3 bdreed35 Programmer Mar 2, 2003 1,549 US I agree with Gary, you may need to force the format with the ToText function so you don't get decimals: ToText(PageNumber,0) & "/" & ToText(TotalPageCount,0) ~Brian Upvote 0 Downvote
I agree with Gary, you may need to force the format with the ToText function so you don't get decimals: ToText(PageNumber,0) & "/" & ToText(TotalPageCount,0) ~Brian
Dec 12, 2006 Thread starter #4 Corres Technical User Jun 13, 2006 87 CA Thank you very much to GJParker and bdreed35 !! it works perfectly. Upvote 0 Downvote