Good morning all,
Do you know how to display the details of a record on a form in view mode from a different list in the list where the record is.
I have three sharepoint lists:
* Clients
* Products
* Order: (Customer_ID; Product_ID; Number; Price; ...)
(The order list thus integrates the IDs of the Customer and Product records.
I would like when I am on the ORDER list, at the click to navigate to the Customer file: screen_detail_client
For the screen_detail_client
I do not know which function to put in Item =
(to find the enregestriment: ID = ID_Client)
Do you have a solution ?
Setup a new button with the text "View Customer" and put the following code in the OnSelect property of the button.
Set(customerID, your_customer_ID_value);
Navigate(screen_detail_client,None);
Then on the screen_detail_client I assume you have the client details in a View Form. Put this code in the Item property of the View Form.
LookUp(your_customer_datasource,ID=CustomerID);
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
WarrenBelz
98
Most Valuable Professional
MS.Ragavendar
60
stampcoin
48