Hi @Styli,
Could you please tell me that what is the field_5 in your Choices() function? What is the relationship between field_5 and 'Machine Code'?
Here is what I get from your description:
1). You have an edit form connected to the SP list, the 'Machine Code' is a Choice type in your list, right?
2). You want to populate the Machine Code combobox with a column from Excel table, right?
If so, you could set the Items property of the ComboBox with:
Distinct(Table1,ColumnName)
Set the Update property of the data card with:
{Value:ComboBox.Selected.Result}
Further, if you don't plan to refer to the options from the Choices column in your list, there is no need to set it as Choice type, a single-line-of-text is better.