Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a column "Status" that contains values "completed" and "not completed"
I have a due date column
Task | Status | Due Date |
| 1 | Completed | mm/dd/yyy |
| 2 | Completed | mm/dd/yyy |
| 3 | Not Completed | mm/dd/yyy |
I want to visualize sum of all tasks completed/ sum of all tasks due for that month
I've written this query that has too many arguments
Solved! Go to Solution.
Thank you. The query seems to work, but I am unable to visualize it by due date
@SMisquith
Try this measure please:
Measure =
DIVIDE(
CALCULATE(
COUNTROWS(Table1),
Table1[Status] = "Completed"
),
COUNTROWS(Table1)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you. The query seems to work, but I am unable to visualize it by due date
| User | Count |
|---|---|
| 51 | |
| 35 | |
| 23 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 57 | |
| 39 | |
| 21 | |
| 21 |