Hi @v-xida-msft
Thanks for your assistance. Yes the Owner field is a choice type in the SP list "HOSTFAMILIES"
I have tried the workaround without success.
Distinct(HOSTFAMILIES, Owner.Value)
This issue I have is that no choice columns appear in the datasource. see pic
Note : I have over 10 choice columns in this list, none of which show here.

So I'm assuming that's for a reason, maybe its a choice trying to choose a choice. So any way using your suggestion gave blank results.
So just to clarify, the custom form and datasource in the form is for the list "LongTermStudents" In "LongtermStudent" I have column "HostTile" (Single line of Text type) which I want to select the host from SP List " HOSTFAMILIES" using Title (being the unique identifier)
Note: yes I also have HOSTFAMILIES data source in the form but the actuall Edit Form data source is "LongTermStudents" Is this where I have gone wrong. Maybe I need to have a second column in "LongTermStudents" showing Owner?
What is kind of working...
In my custom form I have put the following in the OnVisible property of the screen containing the form;
ClearCollect(ColHostOwner, {Result: "Select Host Owner"});
Collect(ColHostOwner, Distinct(HOSTFAMILIES,Owner.Value))
Giving me a Distinct list of the owners. This works.
I can then select a HostTitle
So the question I have is what different senario would your workaround work?
Do you know why the choice fields do not show in the field option of the ComboBox in this situation
lastly how do I keep the default selection of ComboBox showing the Owner options? Or as I now have a collection I cant as it clears each time the app is closed
Thanks so much for your help and I hope I make sense.