Hi @sayalides ,
Do you want to insert a drop down inside a gallery and display lookup field in this drop down?
If so, please notice two points:
fill in a table in drop down's Items property
fill in a value in drop down's Default property
You could set like this:
Items:
Choices(entityname.Job).Name
Default:
ThisItem.Job.Name
You need to use this formula to update this field:
LookUp(relatedenetityname,Name=Dropdownname.Selected.Name
Actually, I more suggest you use combo box to display and edit lookup field, which will be more simple.
You could set combo box like this:
1)Items:
Choices(entityname.Job)
2)DefaultSelectedItems:
ThisItem.Job
You need to use this formula to update this field:
comboboxname.Selected
Best regards,