Announcements
No record found.
Full Name:
First Name:Naresh
Last Name:Kumar
When ever given first name and last name automatically display the full name like Naresh Kumar how to achive this task pls help me friends
*This post is locked for comments
You can use calculated field to achieve this. Refer this:
www.summitgroupsoftware.com/.../calculated-fields-part-2-working-string-functions
Thanks....I got......feeling happy..
Hi Naresh,
In order to achieve this task, follow the steps below.
Step 1: Create a calculated field "Full Name" in the entity as shown in the screenshot below.
Step 2: Click on the Edit button near the field type Calculated. A new window appears as follows.
Create the conditions for the calculated field as shown above and click on Save and Close.
Now the calculated field full name displays the concatenated values of first name and last name.
Also, refer the link below for more information on concatenated field.
http://www.preact.co.uk/blog/working-with-calculated-fields-in-microsoft-dynamics-crm
Hope this helps.
function displayFullName() {
var firstname = Xrm.Page.getAttribute("entity_name").getValue();
var lastname = Xrm.Page.getAttribute("entity_name").getValue();
var display = Xrm.Page.getValue("entity_fullName").setValue(firstname + " " + lastname );
return display
}
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
JS-09031509-0 3
AS-17030037-0 2
Mark Eckert 2