Forum Discussion
alhashmi
6 years agoNew Member
Count Error
Hello, I need to make a graph showing how many times each person has their name in column "Done by" and "Checked by". The issue is that the graph "Checked By" is correct but the graph for "Done ...
- Anonymous6 years ago
Hi alhashmi ,
Create one active relationship and on inactive relationship.
Use USERELATIONSHIP() function to create a measure for the inactive column.
Measure = CALCULATE(COUNT('Table'[Checked by]),USERELATIONSHIP('Table'[Checked by],Who[person]))Result would be shown as below.
Best Regards,
Jay
Anonymous
6 years agoNot applicable
Hi alhashmi ,
Create one active relationship and on inactive relationship.
Use USERELATIONSHIP() function to create a measure for the inactive column.
Measure = CALCULATE(COUNT('Table'[Checked by]),USERELATIONSHIP('Table'[Checked by],Who[person]))
Result would be shown as below.
Best Regards,
Jay