Hi @lesotho_kid ,
Could you please show more details about the formula you typed within the Items property of the cmbCompanyName?
Further, do you type a Distinct formula within the Items property of the cmbCompanyName?
Regarding the issue that you mentioned, I think you have typed Distinct formula within the Items property of the cmbCompanyName, right?
Based on the formula that you mentioned, I think there is something wrong with it. Please consider modify the formula within the DefaultSelectedItems property of the ComboBox to following:
If(
EditForm_Checklist.Mode = FormMode.New,
{
Result: "...Select a value"
},
{
Result: ThisItem.LGL_Checklist_CompanyName
}
)
Please try above solution, check if the issue is solved.
Regards,