Hi
Custom SharePoint list with a form in Powerapps, one column is a lookup to a custom list with 2 columns, title and driver-domain
My goal is to set a different field to the value of driver-domain (for the moment I'm trying to set a variable)
If I add a standalone dropdown it works, but not on the sharepoint integration form
Works:
UpdateContext({varDriver: LookUp(Drivers, Title = Dropdown1.Selected.Title, 'Driver-Domain')})
Doesn't work:
UpdateContext({varDriver: LookUp(Drivers, Title = ThisItem.ToDriver.Value, 'Driver-Domain')})
Hi @Anonymous,
I am glad you find a way to solve your problem.
If your problem has been solved, You could go ahead and mark the post as solved by clicking “Accept as Solution” so that this thread will be marked for other users to easily identify!
Best Regards,
Community Support Team _ Lin Tu
found it 🙂 DataCardValue31.Selected.Value
UpdateContext({varDriver: LookUp(Drivers, Title = DataCardValue31.Selected.Value, 'Driver-Domain')})