how to separate currency values through commas in salesforce formula field.
My code :
TEXT(ttt__c) & " to " & TEXT(sss__c) & " xxx in "& city__c & if(State__c="",""," "& State__c )&
if(Zip__c="",""," "& Zip__c )& " with amount $"& TEXT(amount_Min__c)& " to $"& TEXT(amount_Max__c)&
" created on "& Text(DATEVALUE(CreatedDate))
my out put is :
2 to 3 jjjs in london with amount $1000 to $2000 created on 2016-10-21
but my requirement is : 2 to 3 jjjs in london with amount $1,000 to $2,000 created on 2016-10-21
Best Answer
You need to format this to get expected value. And its not easy to maintain.