Greatings experts,
I have a form connected to a sharepoint list (VM-resources) and in one of the Cards I've changed the "update" property to "DataCardValue36.Selected"
This Datacard value is a combobox with the Items property referring to two different Sharepoint Lists with the following code:
If(
LookUp(
'vm-Access',
Title = varOwner,
Company
) = "Vendor1",
Distinct(Filter(ListProjects,"Vendor1" in Vendor),ProjectNumber),
If(
LookUp(
'vm-Access',
Title = varOwner,
Company
) = "Vendor2",
Distinct(Filter(UniquePTs,"Vendor2" in Vendor),ProjectNumber),
Distinct(ListProjects,ProjectNumber)
)
)
The combo box is retrieving correctly the ProjectNumbers of the correct Vendor currently logged but for some reason its not passing the selected value to the Sharepoint List "VM-resources"...
For what I understood it should be possible to populate combobox from one form with data from different datasources...
Anybody can give me a little help? Thank you for your time!