I have a table and I need to add the different values that are greater than 5 and belong to the DEV team.
Unfortunately, it is not working.
I used this code, the expected result is 6 but now is showing only 3.
CALCULATE(
DISTINCTCOUNT('data (1)'[issue_key]);
FILTER('data (1)';[team]="Dev");
FILTER('data (1)';[SLAs]>5)
)