function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
nagalakshminagalakshmi 

Displaying currency in string format

Hi,

 

I have a currency field. My requirement is displaying currency in string format on visual force page. Please any one help me.

 

Thanks,

Lakshmi

salesforce expertsalesforce expert

Hi Naga,

 

<apex:column width="100px" >
       <apex:outputText value="${0,number,###,###,###.00}">
               <apex:param value="{!ptd.Program_Dollars_Reimbursed__c}"/>
        </apex:outputText>
 </apex:column>

 

Note: Program_Dollars_Reimbursed__c is the currency field. 

 

let me know if this helps you!

 

 

 

-baskaran