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
uuuu 

Convert Number into text

Hello Friends,
Please help me!
I have custom field Zip_Code__c(Number field)
After inserting any value it display 123,456(with comma)
How i convert the Number entered into Zip_code__c into Text Field.
so it will display like 123456(without comma).
Thank you!

Regards
Anita
Best Answer chosen by uu
VinayVinay (Salesforce Developers) 
Hi Anita,

Currently, this might not be possible.  Review below idea link for same and vote for this feature to be available in feature.

https://success.salesforce.com/ideaView?id=08730000000BrGKAA0

Below is the workaround:

create a formula field with Text as return type.
Formula: Text( Zip_Code__c)

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,
Vinay Kumar

All Answers

ANUTEJANUTEJ (Salesforce Developers) 
Hi Anita,

Can you try implementing the scenario using a trigger.

Regards,
Anutej
VinayVinay (Salesforce Developers) 
Hi Anita,

Currently, this might not be possible.  Review below idea link for same and vote for this feature to be available in feature.

https://success.salesforce.com/ideaView?id=08730000000BrGKAA0

Below is the workaround:

create a formula field with Text as return type.
Formula: Text( Zip_Code__c)

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,
Vinay Kumar
This was selected as the best answer
uuuu
Thank you Friends for your reply.
Regards,
Anita