Hi Folks -
I have the following collection set ofr OnStart:
Clear(ListActParentList);
Collect(ListActParentList,
ShowColumns(RD_Investment_List, Portfolio_Status<>"Terminated"),
"Name")
);
Collect(ListActParentList,
ShowColumns(
Filter(RD_Target_List,Portfolio_Status<>"Terminated"),
"Name")
);
Collect(ListActParentList,
ShowColumns(
Filter(rdPlatIntInfa,DataCardValue27.Selected.Value<>"Terminated"),
"Name")
)
However, i'm noticing certain data element - particularly for "RD_Indication_List - are not available in my collection.
I use my collection as source for a ComboBox. I have confirmed the data missing data elements from the collection do not have a Portfolio Status of "Terminated".
Is there perhaps a limit for a collection and I could be exceeding it? I am getting rhe delagation warning.