Hello,
I am trying to populate a dropdown box in a Papps Canvas app.
I have one entity that have two lookup fields to the users entity. My entity name is "Coaching Pair" and the lookup fields are "Coached" and "CoachedBy".
In my dropdown i would like to list the ones that i'm a coach for.
Filter('Coaching Pair', CoachedBy.'Primary Email' = "magnus.goransson@altitude365.com")
The above works perfect, but it gives me only the autonumber names from the Coaching Pair entity. I would like to populate the dropdown with the Coached lookup field.
I have tested this:
Filter('Coaching Pair', CoachedBy.'Primary Email' = "magnus.goransson@altitude365.com").Coached.'Primary Email'
However, that gives me two blank options in the dropdown.
Is there any way to solve this?
/Magnus