[SalesForce] Currency Format in Visualforce page

I am trying to change the currency format to below format

Netherlands – EUR ###.##0,00 :

Code which I am using:

<apex:page standardController="Account"> 
    <apex:outputText value="{0, number, 000,000.00}"> 
        <apex:param value="{!Account.AnnualRevenue}" /> 
    </apex:outputText> 
</apex:page>

However , It is throwing

invalid format

error. Please assist

Best Answer

Looks like this can help you: <apex:outputText value="{0, Number, Currency}"> You can also try {0, number, EUR #.##0,00}

Related Topic