[RESOLVED] Formatting Crystal Report Formula
Is there any way to customize the PageNofM field in CR so i can change the separator to something else not "of"?
I've made a formula with syntax:
PageNumber &"/"& TotalPageCount
but the result is something like these:
1,00/3,00
How do I format the formula so the output would be:
1/3
Im using Crystal Report installed with VS 2005 Professional Edition
Thanx,
Re: Formatting Crystal Report Formula
I don't know about this
Quote:
Crystal Report installed with VS 2005 Professional Edition
but Try this... (works for cr9 & 11)
Open the Field Explorer click (+) on the special fields You should find page N of M pull it and place it at the reqd place in the report
Re: Formatting Crystal Report Formula
sorry I got your question wrongly. :cry:
Try this
Code:
totext(pagenumber,0) & "/" & totext(totalpagecount,0)
Re: Formatting Crystal Report Formula
Pls Resolve the thread if got your problem solved
Re: [RESOLVED] Formatting Crystal Report Formula
Thanx VBFNewComer, it helps me a lot, sorry for the late response.