Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm trying to create a count of the Article Shared column based on what's in the Case Status column.
I need to know how many Closed cases have a True in the Article Shared column. Is this something I can do?
Solved! Go to Solution.
Try this,
Closed Cases =
COUNTROWS(
FILTER(
Sample_Data,
Sample_Data[Case Status] = "Closed"
&&
Sample_Data[Article Share] = TRUE()
)
)
Closed Cases with Articles Shared = CALCULATE( COUNT('CaseTable'[Article Shared]), 'CaseTable'[Case Status] = "Closed", 'CaseTable'[Article Shared] = TRUE() )
This measure calculates the count of 'Article Shared' column where the 'Case Status' is "Closed" and 'Article Shared' is True. You can then use this measure to display the result in a visual or table.
Try this,
Closed Cases =
COUNTROWS(
FILTER(
Sample_Data,
Sample_Data[Case Status] = "Closed"
&&
Sample_Data[Article Share] = TRUE()
)
)
Perfect. Thank you so much for your help
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |