Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
@amitchandak May be you can help here as well.
I've created a measure like below:
Solved! Go to Solution.
@Anonymous , You giving a filter on work item type and taking a distinct of that , They are from different tables, Hope this not key they are joined on
Feature = CALCULATE(DISTINCTCOUNT('devops-query-spr2'[Work Item Type]),FILTER('devops-query-spr2','devops-query-spr2'[Work Item Type]= "Feature"))
Are you using right column for distinct ?
or
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@amitchandak Please see below table:
| Work Item Type | Work Iteam iD | Title |
| Issue | 1 | abc |
| Bug | 2 | def |
| Feature | 3 | ghi |
| Feature | 4 | 123 |
| User Story | 5 | 789 |
I want only count of distinct value of Feature from column "Work Item Type" which is 2 but its coming just 1 for me when I'm creating the measure.
@amitchandak if i use just count the value is coming correct but I want the distinct value which is 89.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 32 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 87 | |
| 73 | |
| 37 | |
| 28 | |
| 26 |