Forum Discussion
Anonymous
5 years agoNot applicable
Eliminate Duplicates
I'm pulling data from an SP list. The list is made up of qualifications and certifications (1989 - 2020). Some of the qualifications repeat, as the employee needs to requalify periodically (1 per yr,...
ChrisMendoza
Resident Rockstar
5 years agoSo ONVISIBLE you create a table/collection:
| Result | Days |
| Live Fire Refresher | 720 |
| Fitness Test |
365 |
| Self-Contained Breathing Apparatus Fit Test | 365 |
| Medical | 1095 |
and then you do what? Do you compare TODAY( ) to 'Sharepoint List'[LastCertificationDate]? How are you filtering the Sharepoint List in Power Apps? Knowing that will help us help you.
Anonymous
5 years agoNot applicable
The Gallery filter is:
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))
- ChrisMendoza5 years ago
Resident Rockstar
Something like Adding a RELATED COLUMN
relatedDaysColumn = RELATED('Table'[Days])and a Measure
Measure = VAR __temp = DATEDIFF(SELECTEDVALUE(Table2[LastQualification]), TODAY(),DAY) RETURN CALCULATE( COUNT(Table2[employee]), FILTER(Table2,Table2[relatedDaysColumn] <= __temp ) )Providing data would help us in coming up with a solution.
- Anonymous5 years agoNot applicable
There is already a 'DaystoRenewal' column in the List that looks just like what you created.