Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Iam performing a card in powerbi where the status change to "Closed" then the count bar should show for closed items
similarly for open items the another card should show for "Open" items.
How can i perform this in power bi.
Solved! Go to Solution.
Hi @aqeel_shaikh You could achive this throug measures Could you follow these please
Create measures:
ClosedTasksCount =
COUNTROWS(
FILTER(
YourTable,
YourTable[Status] = "Closed"
)
)
OpenTasksCount =
COUNTROWS(
FILTER(
YourTable,
YourTable[Status] = "Open"
)
)
Add two card visuals and assign each measure to display the counts.
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Thanks aton. it helped
Hi! @aqeel_shaikh
You can use the measure as suggested by Akash_varuna or you can drag and drop and then filter the data as per your status. You can use multi-row card, card(new) or a card visual to display your data. Attaching image below for the multi-row card and card(new) for your reference.
Create Two Measures
• Use Power BI’s COUNT + FILTER logic to tally tasks:
• One measure counts entries marked “Closed”
• Another counts entries marked “Open”
Add Card Visuals
• Drag two Card visuals to your report canvas
• Assign the “Closed” measure to one card
• Assign the “Open” measure to the other
Hi @aqeel_shaikh You could achive this throug measures Could you follow these please
Create measures:
ClosedTasksCount =
COUNTROWS(
FILTER(
YourTable,
YourTable[Status] = "Closed"
)
)
OpenTasksCount =
COUNTROWS(
FILTER(
YourTable,
YourTable[Status] = "Open"
)
)
Add two card visuals and assign each measure to display the counts.
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 40 | |
| 21 | |
| 18 |