Hello,
I have two SP lists: ListA and ListB. In List A, I have a column "AssignedTo" that is a person column. In List B, I have a column called 'Employee' (aslo a people field) and another column called "Available", which a text column containing either 'yes' or 'no'.
I want a form that will display/allow to edit the current record (Form1.Mode=edit) or to create a new record (Form1.Mode=new).
I can accomplish all of that easily enough. Where I am running into trouble is in displaying the 'available' people only in the combobox. In the Items property of the combobox, the default is Choices[@ListA].AssignedTo). But, that allows selection of any person in our Office365 group. If I change the items property to Choices[@ListB].Employeee, I still get everyone. I assume this is because both person columns are configured in SP to pick from our Office365 group.
I tried to filter the items property Filter(ListB,Available="yes").Employee but, that yields all blanks and the field editor choices are greyed out

If I leave off Employee, I still get just blanks in the combo box, but the field editor choices are no longer greyed out

I am able to get a list of people using Distinct, but then it is no longer a Person field, but rather a text field called 'Value'

I need to be able to patch the choice back to the datasource, so I need the person field.
Also, when I changed the Items property for the combobox from Choices([@ListA].AssignedTo), I no longer see the default value from the list. It only appears if I re-enter Choices([@ListA].AssignedTo) in the items property. The DefaultSelectedItems property is set to Parent.Default
I feel like I must be missing something simple and fundamental, but I am stuck. I have been working on this for several hours without making any progress. Any help would be greatly appreciated.
-crawlejg