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
pmozz01pmozz01 

Trying to return currency value - 2 decimals

Hi, I need to return a value so that it looks like currency ($1.00), but instead end up with 1.0.  Can anyone help?

 

Thanks!

Pat

 

private static string DecimaltoCurrency(Decimal val) { if (val==0) return '0.00'; string str = val.divide(1,2,RoundingMode.HALF_UP).format()+'00'; integer dec = str.lastindexOf('.'); system.debug('-------DecimaltoCurrency: -str/dec/len------------->'+str + '/'+dec+'/'+str.length()); if (dec==-1 ) return str.substring(0,str.length()-2)+'.00'; //else if (dec==str.length()-1) return str+'0'; else return str.substring(0,dec+3); } public double getTotalAmount() { double rtn=0.00; system.debug('newItems:'+newItems); if (newItems!=null && newItems.size()>0) { for (LineItem li : newItems.values()) { if (li.item!=null) rtn+=(li.item.UnitPrice__c * li.item.Quantity__c); } }

 

 

 

Anand@SAASAnand@SAAS
If this is inside a visual force page,you can format out put using the <apex:outputText> tag and specify the format. If this is not in visual force page, not sure what the exact use case is. 
pmozz01pmozz01
Thanks, figured it out.