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

Text fields to take first values
I have one text fields
input ::::Feeler - 62, Exciter - 58, Bottom-Liner - 58, Detailer - 54
and in a new field i only want to see output as :::Feeler - 62 how can i achieve using formula field??
input ::::Feeler - 62, Exciter - 58, Bottom-Liner - 58, Detailer - 54
and in a new field i only want to see output as :::Feeler - 62 how can i achieve using formula field??
LEFT( Text_Field__c , (FIND(",",Text_Field__c)-1 ))
In above formula let's say your text field is Text_Field__c, so create formula field with text return type.
Please mark best answer if it help.
Regards,
Ramakant
All Answers
You can solve this as shown here
Note:If you wish to use other values, be sure to trim() them to avoid the spaces.
Regards
Lokesh
FIELD NAME : PROFILE HAS VALUES OF Bottom-Liner - 78, Exciter - 71, Detailer - 67, Feeler - 65
I NEED TO CREATE NEW FIELD CALL TYPE WHICH SHOWS OUTPUT AS ONLY Bottom-Liner - 78
You have 1 text field or multiple?
Please confirm.
Regards,
Ramakant
AND NOW CREATING ONE NEW FORMULA FIELD WHICH SHOW ME ONLY Bottom-Liner - 78 AS A OUTPUT
LEFT( Text_Field__c , (FIND(",",Text_Field__c)-1 ))
In above formula let's say your text field is Text_Field__c, so create formula field with text return type.
Please mark best answer if it help.
Regards,
Ramakant