Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 51 | |
| 44 | |
| 43 | |
| 39 | |
| 32 |