Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Wooticus
New Member

Counting Distinct Column then Distinct Row

Hello all,

 

I've dug through the forums to try and narrow down my question, but have yet to find an exact answer. Please see example data here:

Wooticus_0-1676477629610.png

What I am trying to do is:

1. Do a distinct count of the ID, so for example it only reads "123" once and so on.

2. After Step 1, only count "Pass", so for this example it would output "2" since "456" and "1234" are both "Pass" and "456" has been only counted once.

 

This is what I am using so far:

Wooticus_1-1676477766802.png

If I try putting in Sheet1[ID] = "Pass" then PowerBI kicks an error saying it expects a column for the second argument. How do I need to rewrite this?

 

The Excel data I am using is an example from a product that is auto-generated from a program I have no control over, so I cannot change the Excel format. Additionally, I cannot outright eliminate duplicate "ID" for the overall PowerBI product because some portions of my overall product needs to read the duplicate entries.

 

Thank you and hope I explained this well enough,

Cody Frank

3 REPLIES 3
Wooticus
New Member

Hello all, sorry for the late response. I ended up utilizing this solution which I apologize I cannot find it but it worked well:

 

Pass = 
CALCULATE(
    DISTINCTCOUNT(Sheet1[ID]),
    FILTER(Sheet1,Sheet1[Rating] = "PASS")
)

 

 

YukiK
Impactful Individual
Impactful Individual

Try a formula like this:

Measure = 
COUNTROWS(
    CALCULATETABLE(
        VALUES(Sheet1[ID]),
        Sheet1[Rating] = "Pass"
    )
)
jdbuchanan71
Super User
Super User

@Wooticus 

Try it like this.

Test1 =
CALCULATE ( DISTINCTCOUNT ( Sheet1[ID] ), Sheet1[Rating] = "Pass" )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors