Forum Discussion
rayinOz
6 years agoHelper III
Custom column, measure or table
Hello community I have a dataset that has two courses per employee (employeeID). Course A and Course B. Each course will have a status "complete" or "incomplete". EmployeeID | Course Name | C...
- 6 years ago
amitchandak
6 years agoSuper User
rayinOz ,
Create the measures like this and display against the employee ID/Name
total = calculate(distinctCOUNT(table[Course Name ]))
Complete = calculate(distinctCOUNT(table[Course Name ]), table[Course Status]="Complete")
Flag = if([total]=[Complete],"Yes","No")
Appreciate your Kudos.
- rayinOz6 years agoHelper III
Hello
Thanks for helping me create the three measures. I've done that, but I am unsure how the display them in a list or graph.... thanks so much. 😄
Ray