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,...
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))
ChrisMendoza
Resident Rockstar
5 years agoSomething 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.