I have two tables as follows:
CUSTOMER (CustomerId (PK), CustomerName)
TICKET (TicketId (PK), Amount, CustomerId (FK ref CUSTOMER))
In an EditForm, I would like to add/edit a record to the TICKET table, and I would like the customers to be limited to what's in the CUSTOMER table. I've managed this by;
1. Make CustomerId in the EditForm a drop down.
2. Set Items property of it to Distinct(CUSTOMER, CustomerId)
This works fine, and I can add or edit a record in the TICKET table. But as you can see this is not very user friendly since you have to remember which customer each customer id refers to, so instead of doing this, I'd like to offer CustomerName as drop down content, but when the SUBMIT button is hit, I'd like the form to add/edit TICKET table by using appropriate CustomerID. How can I achieve this?
Solved! Go to Solution.
Hi@Sachintha,
Based on the issue that you mentioned, do you want to submit the Ticket with a correct CustomerID?
Let me confirm something important with you, you edit/create the Ticket form using a Dropdown where you want to populate it with the CustomerName rather than CustomerID, however, you want to add a CustomerID to every record when you submit the Ticket form.
If my understanding is correct, I think the LookUp() function could achieve your needs.
I have a test on my side, please take a try as below:
Set the Items property of the Dropdown as below:
Distinct(CUSTOMER,CustomerName)
Set the Update property of the CustomerID Data Card as below:
LookUp(CUSTOMER,CustomerName=Dropdown1.Selected.Result,CustomerId)
Best Regards,
Qi
Hi@Sachintha,
Based on the issue that you mentioned, do you want to submit the Ticket with a correct CustomerID?
Let me confirm something important with you, you edit/create the Ticket form using a Dropdown where you want to populate it with the CustomerName rather than CustomerID, however, you want to add a CustomerID to every record when you submit the Ticket form.
If my understanding is correct, I think the LookUp() function could achieve your needs.
I have a test on my side, please take a try as below:
Set the Items property of the Dropdown as below:
Distinct(CUSTOMER,CustomerName)
Set the Update property of the CustomerID Data Card as below:
LookUp(CUSTOMER,CustomerName=Dropdown1.Selected.Result,CustomerId)
Best Regards,
Qi
Yes, that's exactly what I wanted, thanks!
User | Count |
---|---|
124 | |
87 | |
86 | |
75 | |
69 |
User | Count |
---|---|
214 | |
181 | |
139 | |
96 | |
83 |