Reputation: 2099
I have a report containing a currency text filed. I want to separate it's number by coma, every 3 digits. so I changed it's Text Format from it's Properties. It's OK in normal display, but when I export this report to a PDF file, then it's currency numbers doesn't display well. Please help me about this problem.
Upvotes: 0
Views: 1358
Reputation: 1
You can use formats. For example you can fill your text field with:
Price is: {Format("{0:C}", MyPrice)}
Upvotes: 0