I have a Dataverse table, that has a column that is a Choice lookup.
I am using Powerapps to save data into the table ok. But now I want to display a Gallery with all the columns from specific rows. My number rows are showing ok, but my Choice Columns are not happy.
Code.
Refresh('Expenses');
ClearCollect(collectionOfItems,
Filter('Expenses', , 'Expenditure ID'.ID = varViewExpensesItem.ID)
);
Then when i put the above on a Gallery, and use the $ Amount column, its ok and gives me values, but when I select the Cost Center or Project Code column which is a Choice, I get the error:

Any ideas please