I currently have two sharepoints list. Let's say one of them is a Product and one of them is a Vendor :
tblProduct
[
title,
name,
price,
vendor (item)
]
tblVendor
[
title,
name
]
In the Edit/Add Form of tblProduct, I have a ComboBox where the user needs to select a vendor.
The ComboBox is currently showing the title of the vendors. (It's set to tblProduct.vendor)
For exemple, it displays "OEC", but I want it to display "Outsider Equipement Corporation" instead. (It's a fictional company just for this exemple)
Is there a way to do it ?
Thanks in advance for you answers ^-^