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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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