Try the following:
1- first create a collection with you choices
ClearCollect(MyOptions,Choices('Status Reason (Cases)'));
2- Create another collection to add your records but using AddColumns to include new column with the text value
ClearCollect(MyCollection,
AddColumns(Cases,'ChoiceColumn',
Text(LookUp(MyOptions,'Status Reason' = Value).Value)
)
);
Check if this works for you.
If this information help please give me a kudo. If solve you problem please mark as solution. This is help the community.
Kind Regards.