Forum Discussion
Anonymous
6 years agoNot applicable
Measure or Calculated Column for filtering specific condition and comparing to original table
Here is made up data to show what I'm trying to accomplish: TraineeId CertificationID 234 9 234 234 21 234 15 234 21 234 11 567 21...
- 6 years ago
Hi,
Drag TraineeID to the row labels of your visual and write this measure
=IF(CALCULATE(COUNTROWS(Data),Data[CertificationID]="11")>0,"Yes","No")
Hope this helps.
HotChilli
6 years agoCommunity Champion
You could have a table to hold Trainee data , for example, DimTrainee = DISTINCT(TableCourses[TraineeID])
TableCourses is your ESGTrainingCoursesOnline
and you could add a column to show certification 11,
for example,
Cert11 = if (LOOKUPVALUE(TableCourses[CertificationID], TableCourses[TraineeId], DimTrainee[TraineeId], TableCourses[CertificationID], 11) = 11, "Yes", "No")