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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
yorkehead
Frequent Visitor

Calculating a metric DAX: Couting values if all values on the column > 10

Hi all,

 

I have a a table with two columns, for example.

 

 ID  OtherID

X      12345

X      12456

Y       .....

Y      ......

Z      .....

 

 

IF the count of OtherID ( for every ID)  is bigger than 10 I want to count all the IDs bigger than 10.

 

Thanks.

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @yorkehead,

 

If I understand you correctly, you should be able to use the formula(DAX) below to create a measure to get the expected result in your scenario. Smiley Happy

Measure =
COUNTROWS (
    FILTER (
        SUMMARIZE ( Table1, Table1[Column A], "CountOfColumn", COUNTROWS ( Table1 ) ),
        [CountOfColumn] >= 5
    )
)

Note: you will need to replace Table1 with your real table name.

 

Regards

View solution in original post

3 REPLIES 3
v-ljerr-msft
Employee
Employee

Hi @yorkehead,

 

If I understand you correctly, you should be able to use the formula(DAX) below to create a measure to get the expected result in your scenario. Smiley Happy

Measure =
COUNTROWS (
    FILTER (
        SUMMARIZE ( Table1, Table1[Column A], "CountOfColumn", COUNTROWS ( Table1 ) ),
        [CountOfColumn] >= 5
    )
)

Note: you will need to replace Table1 with your real table name.

 

Regards

Thanks!!! That's exactly what I needed!

yorkehead
Frequent Visitor

Hi all,

 

I want to create a metric in DAX that allows me to Counting all ID's that count bigger than 5  in other column.

 

Example:

Column A( ID) Column B

1                          123

2                          456

1                          234

1                          235

1                          236

1                          234

 

In this case ID 1 will be counted.

 

Can you help me?

 

Thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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