Announcements
No record found.
Hi, I have 3 TEXT fields A, B, C. In field C, I would like to show the combination as this (A, B). Ex : A= Smith B= Sam, then C should be (Smith, Sam)
Please advise the steps to achieve this in Unified Interface
Thanks.
Hi,
the easiest way is to use a Workflow. Please refer to this blog:
powerplatformramblingsbystevenblog.com/.../
You can follow the same steps in Dynamics CRM Online
You could use a workflow or make the C field as a Calculated field:
docs.microsoft.com/.../define-calculated-fields
Hope it helps,
Marco
Hello there,
As mentioned by the other guys you can use business rules and workflows, however I would like to add that you can also use a javascript function for this and register it in the onload event and in the onChange event for fields A and B.
function combination(executionContext)
{
var formContext = executionContext.getFormContext(); // get formContext
// use formContext instead of Xrm.Page
var a = formContext.getAttribute("new_fielda").getValue();
var b= formContext.getAttribute("new_fieldb").getValue();
if(a!=null && b != null){
var c=a+b;
formContext.getAttribute("new_fieldc").setValue(c);
}
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.
ManoVerse 101 Super User 2026 Season 1
11manish 83
Muhammad Shahzad Sh... 69 Most Valuable Professional