I am trying to create a canvas app with PowerApps from Microsoft Dynamics 365. I am also trying to set a lookup field value from another lookup field's value and I can't find how to.
- I have the "User" lookup on my main screen:
- I have the Operator value in another screen
I want to set the "Operator" value from the "User" field. While trying to set the value I found I need a Record instead a single value, so I found on Microsoft's function reference a function to retrieve this record like:
Lookup(Operadores, Operador = Operador) // or Operador.Operador
But this is not working... so the question I think is simple. How to modify a lookup field with the value of another lookup field in a PowerApps canvas app. Thanks in advance.