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
Rst123Rst123 

currency conversion issue like want to display AUD 450,000.00 (USD 455,843.92) to USD 455,843.92

i have created a visualforce page diplaying set of fields data in columns :-

My Column :-

 

 <apex:column headerValue="Total Price(USD)">
                             <apex:repeat value="{!varOpp.opp.OpportunityLineItems}" var="PrdLst" rendered="{!if(varOpp.opp.OpportunityLineItems.size>0 , true, false)}" >
                                   <apex:outputField value="{!PrdLst.TotalPrice}"/><br/>
                                   <apex:param value="{!convertCurrencyWithApexCode}"/>
                             </apex:repeat>
                           
                    </apex:column>

 

Now, I'm getting the data in AUD 450,000.00 (USD 455,843.92) format where i want to display only USD 455,843.92

 

Ashish_SFDCAshish_SFDC
Hi, 

Looks like this issue is already addressed in the below posts,

https://developer.salesforce.com/forums/ForumsMain?id=906F000000094GWIAY

https://developer.salesforce.com/forums/ForumsMain?id=906F000000099RbIAI

Regards,
Ashish