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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |