You need to sign in to do that
Don't have an account?
krish99
Combine two Text Fields into Single Text Field
Hi,
I have 2 text fields FirstName__c, LastName__c i want to combine these Two Fields into Name__c how can i do it. here Name__c also a text field
I have 2 text fields FirstName__c, LastName__c i want to combine these Two Fields into Name__c how can i do it. here Name__c also a text field
ObjectName.FirstName__c &" "& ObjectName.LastName__c
Regards,
Nitin
All Answers
ObjectName.FirstName__c &" "& ObjectName.LastName__c
Regards,
Nitin
I have to create the Name__c as a formulae field...??? Now I declare Name__c as text field.