You need to sign in to do that
Don't have an account?

Formula Field for text Field
How to write a formula field fetching the first 3 digit of text field
Thanks in advance
Thanks in advance
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
You can use the below formula. Replace the Last_Name__c with the text field as per your requirement.
If this solution helps, Please mark it as best answer.
Thanks,
All Answers
You can use the below formula. Replace the Last_Name__c with the text field as per your requirement.
If this solution helps, Please mark it as best answer.
Thanks,
LEFT will Returns the specified number of characters from the beginning of a text string.
LEFT(Name, 3)
Thanks,
vaani