I originally had this in my Gallery Items. It wouldn't pull all the data.
Filter(ForAll(Distinct(MemberCertificationandQualificationCollection,CQTitle),LookUp(Sort(Filter(MemberCertsandQualsList,(DteofCQ>=MemberProfileDatePicker1.SelectedDate)&&(DteofCQ<=MemberProfileDatePicker2.SelectedDate)&&FullNm=MemberProfileFullNmDropdown.Selected.FullNm),DteofCQ,Descending),CQTitle=Result)),!IsBlank(CQTitle))
I now have this; which is pulling the data the above was not.
Sort(Filter(MemberCertsandQualsList, FullNm=MemberProfileFullNmDropdown.Selected.FullNm), CQTitle, Ascending)
I need to work the DatePicker condition(s) into the above. Currently user have the option of determining a date range or allowing the Gallery to filter all from 1/1/1980 to current date.
LookUp(Sort(Filter(MemberCertsandQualsList,(DteofCQ>=MemberProfileDatePicker1.SelectedDate)&&(DteofCQ<=MemberProfileDatePicker2.SelectedDate)&&FullNm=MemberProfileFullNmDropdown.Selected.FullNm),DteofCQ,Descending),CQTitle=Result)),!IsBlank(CQTitle))