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
viswanadham Aviswanadham A 

How to update a Text field with suffix" IN"

I have a picklist field "Type1" with values Increment,Decrement and one more picklist value "Type2" with values Medium,High .i just want to display the symbol in suffix(IN) in the value entered in the text field is  'Closing ' .

Ex:
Type1- Increment
Type2- Medium

After saving the record field 'Closing ' value should display 'Medium-IN'.
Can this possible?


regards,
Viswa
Akhil AnilAkhil Anil

Hi Viswa,

That's very much possible. Simply create the field Closing as a formula field with a return type of "TEXT" and use the below formula. 

BLANKVALUE(TEXT(Type1__c),TEXT(Type2__c)) + " - IN"

That's it.

Kindly mark it as an answer if that resolved your query !