web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Change title column of...
Power Apps
Unanswered

Change title column of lookup field when selected in other table

(0) ShareShare
ReportReport
Posted on by 52

Hi everyone,

 

In my model driven application  I have a table workorder and a table Machine.

 

Machine has a machine Number and a name.

Workorder has a lookup field of table Machine.

 

When i select my machine in the workorder screen then i can see the name of the machine and not the number.

Can i change this in any way?

See screenshot below for a visualisation of my problem.

jorenchristiaen_0-1698232453796.png

 

Thanks in advance!

Categories:
I have the same question (0)
  • Jose Ramon Profile Picture
    107 on at

    You will have two options, you will have to evaluate which one best suits your needs, as the Lookup will show you the name of the machine, not the name and number.

    1. Create some flow or plugin or javascript, so that when a new machine is created or the name or number is updated, the name field has the concatenation of the machine name and the number.
    2. Create a JavaScript for the onchange event of the existing lookup in the WorkOrder table, so that when a new machine is selected, make a query to obtain the selected machine (returning the name and number) and then, with the value obtained, modify the name property of the lookup. 

     

    let machineColumn = formContext.getAttribute("new_machineid");
    let machineValue = (machineColumn === null) ? null : machineColumn.getValue();
    //Retrieve machine row: Xrm.WebApi.retrieveRecord("new_machine", machineValue)
    machineValue[0].name = 'VALUE WITH RESULT OF Xrm.WebApi with name + number'
    machineColumn.setValue(machineValue);​

     

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 385

#2
Vish WR Profile Picture

Vish WR 367

#3
timl Profile Picture

timl 340 Super User 2026 Season 1

Last 30 days Overall leaderboard