You need to sign in to do that
Don't have an account?

how to insert commas in PDF Visualforce page
I want to have commas in quotes total price that I am displaying on my custom quote VF page(which renders as PDF), how can I have commas in the total price? Pleeeasse help!!!!!
You'll need to use outputtext to format your total number.
Assuming your field is called Quote.Total_Price__c, the following should do the trick:
All Answers
You'll need to use outputtext to format your total number.
Assuming your field is called Quote.Total_Price__c, the following should do the trick:
Wow actually that works!! thank sooo much Bob!!
How do we use the above solution under <span> tag as we have put some 'if' conditions for the display of certain fields and we want those field values to be a comma-separated values.
Thanks in advance.