So I have three collection
So Collection A will have a choice column from a SP List.
Collection B is collection I generated from this SP List,
So Collection C, I want to put all the records in Collection A and Collection B to this one. But doing so result with an error for the Collection B Choice column.
ClearCollect(
CollectionA,
{
SourceName: "",
SourcePort: "",
SourceServiceType: "",
ServerName: "",
DestinationPort: "",
DestinationServiceType: "",
});
ClearCollect(CollectionB,
AddColumns(ShowColumns
(Filter(SPList,MasterID = galID),
"ID","MasterID","SourceName","SourcePort","SourceServiceType","ServerName","DestinationPort","DestServerType"),"ColID",ID));
Collect(CollectionC,
ShowColumns(RenameColumns(CollectionB,"DestServerType","DestinationServiceType"),"SourceName","SourcePort","ServerName","DestinationPort"),
ShowColumns(CollectionA,"SourceName","SourcePort","SourceServiceType" ,"ServerName","DestinationPort","DestinationServiceType") );
So when I try to add the choice columns of CollectionB I get the below error and also when I try to use the DropColumns on CollectionB

Choice Column of CollectionA and CollectionB are patch as below



I will be adding each records from both Collection A and B as a separate record to Collection C.
Let me know what I'm doing wrong