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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Peter_2020
Helper III
Helper III

Count

rHi all, 

I would like to ask for help with following situation:

I have table with Product Number filtered by the project. And for all products I created:

 - measure "Questions" which calculate how many questions in checklist are related to that product,

 - measure "OK" which calculate how many questions from the checklist was ok and

 - measure "Result" which calculate how many % of the question was ok. 

And I need to calculate how many products had result 100% for selected project (on the picture below it is measure "100% at first time"). Always when I used some of the Count commands I received wrong numbers...

Peter_2020_0-1672383078234.png

Any idea how to do this?

Thanks.

P.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how the Data model looks like, but please try writing a measure something like below.

 

expected result measure: =
COUNTROWS (
    FILTER ( DISTINCT ( 'TableName'[PRODUCT NUMBER] ), [RESULT Measure] = 1 )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how the Data model looks like, but please try writing a measure something like below.

 

expected result measure: =
COUNTROWS (
    FILTER ( DISTINCT ( 'TableName'[PRODUCT NUMBER] ), [RESULT Measure] = 1 )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Hi @Jihwan_Kim , thank you so much. it works.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.