is there any alternative of clear collect. clear collect doesn't support delegate and limit of records which will display will be 2000.
I am using clear collect to store filter data.
ClearCollect(paymentrequest,'Payment Requests');
ClearCollect(SearchfilterDashBoardData,Filter( paymentrequest,Status.Value <> draft,If(!IsBlank(txtPaymnetRequestId_1.Text),PaymentRequestID=txtPaymnetRequestId_1.Text,true ),
If(!IsBlank(cmb_office.Selected.ID),Office.Id in cmb_office.SelectedItems.ID,true),
If(!IsBlank(cmb_Status.Selected.Value),Status.Value in cmb_Status.SelectedItems.Value,true),
If(!IsBlank(cmb_entity.Selected.EntityName),Entity.Value in cmb_entity.SelectedItems.EntityName,true)));
After this i have used this collection in items property of gallery