How to set Currency format in apex:outputText?
Note: Use apex:outputField to consider using User's locale(currency and date format). Sample Code: Visualforce page: <apex:page controller="Sample"> <apex:outputLabel value="The value is : "/> <apex:outputText value="{0, number, currency}"> <apex:param value="{!inte}"/> </apex:outputText> ....