I could get the records by
ClearCollect(colPrints,ShowColumns('List1',"RMA_x0020_No_x002e_","Created","Remarks","ClientName","Status"),ShowColumns('List2',"NC_x0020_No_x002e_","Created","Remarks","ClientName","Status"));
But I have a problem with Filter function that I already used in Gallery Item,
it was working:
Filter('List1',StartsWith('RMA No.',txtrRMA.Text) && Created >= dprStart.SelectedDate && Created <= DateAdd(dprEnd.SelectedDate,1) && StartsWith('Client Name',txtrClientName.Text) && Status.Value =ddrStatus.Selected.Value)
But not working with the collection I made. The collection is correct if I use it without Filter.
Filter(colPrints,StartsWith(RMA_x0020_No_x002e_,txtrRMA.Text) && Created >= dprStart.SelectedDate , Created <= DateAdd(dprEnd.SelectedDate,1) , StartsWith(ClientName,txtrClientName.Text) , Status.Value =ddrStatus.Selected.Value)
Any idea?