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')})

