I am trying to filter an SP document library. Even will all the below, the filter is only returning the first 2000 files. Can any provide assistance? For most members I can see everything through year 2019/20. However, many do not show 2020 document that I know are in the library. The only change I made to my original configuration was to add the Warren Belz's formula in the screen OnVisible and changed the collection name to the formula collection.
Screen 1: OnVisible -
ClearCollect(
CQImageColA,
Sort(
'UploadedCerts&Quals',
ID
)
);
ClearCollect(
CQImageColB,
Sort(
'UploadedCerts&Quals',
ID,
Descending
)
);
ClearCollect(
CQImageCollection,
CQImageColA,
Filter(
CQImageColB,
!(ID)
)
);
Clear(CQImageColA);
Clear(CQImageColB)
Gallery 1: Items -
Filter(ForAll(Distinct(MemberCertificationandQualificationCollection,CQTitle),LookUp(Sort(Filter(MemberCertsandQualsList,(DteofCQ>=DatePicker1.SelectedDate)&&(DteofCQ<=DatePicker2.SelectedDate)&&FullNm=ECMemberSearchDD.Selected.FullNm),DteofCQ,Descending),CQTitle=Result)),!IsBlank(CQTitle))
Image Control (In Gallery 1): Image -
First(Filter(CQImageCollection,Name=ThisItem.CQYr&" "&ThisItem.Title&" "&ThisItem.CQTitle&" "&ThisItem.FrstNm&" "&ThisItem.LstNm&" "&ThisItem.AcrdtnAgncy)).'{Link}' & First(Filter(CQImageCollection,Name=ThisItem.CQYr&" "&ThisItem.Title&" "&ThisItem.CQTitle&" "&ThisItem.FrstNm&" "&ThisItem.LstNm)).'{Link}'