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
Anonymous
Not applicable

Count Rows + greater than

Hi!
Looking for some guidance with simple DAX Calculation.I created one Measure to count rows:

 

Measure = COUNTROWS(FullTable)

 

Then on a matrix table I add the following:

 

Lines:
Account Number
Transaction Number
Date of Transaction

 

Values:
Current Value
Measure


I want this table only to show "Account Numbers" that had more than 30 rows count. I just added a filter in the visual for measure field to show me "is greater than 30" but the table doesn't apply this filter.

 

Feel kind stupid since this sounds basic. But I fell this has something to do with those 2 extra lines I added (Transaction Number / Date of Transaction).

 

Can you guys help me?

Thanks,
Barbara

1 ACCEPTED SOLUTION
VasTg
Memorable Member
Memorable Member

@Anonymous 

 

There must be a better way to achieve this, but here you go.

 

a. Create a new column in the table with value 1

            New_Column = 1

b. Use the below measure to count the number of Accounts.

 

Accts Cnt = SUMX(SUMMARIZE('Blank Report','Blank Report'[Country],"ABC",CALCULATE(SUM('Blank Report'[Column]),ALLEXCEPT('Blank Report','Blank Report'[Country]))),[ABC])
 
Replace 'Blank Report' with you table name and Country with Accounts column.
 
If it helps, mark it as a solution.
Kudos are good too.

 

Connect on LinkedIn

View solution in original post

3 REPLIES 3
VasTg
Memorable Member
Memorable Member

@Anonymous 

 

There must be a better way to achieve this, but here you go.

 

a. Create a new column in the table with value 1

            New_Column = 1

b. Use the below measure to count the number of Accounts.

 

Accts Cnt = SUMX(SUMMARIZE('Blank Report','Blank Report'[Country],"ABC",CALCULATE(SUM('Blank Report'[Column]),ALLEXCEPT('Blank Report','Blank Report'[Country]))),[ABC])
 
Replace 'Blank Report' with you table name and Country with Accounts column.
 
If it helps, mark it as a solution.
Kudos are good too.

 

Connect on LinkedIn
Anonymous
Not applicable

Hi @VasTg, How are you? Me again. I had worked perfected before but now I only need to show the distint count for "Transaction Numbers" and then filter it. In this formula you gave me, how do I changed it? Thanks, Barbara

@Anonymous 

 

I am doing good. Thanks for asking.

 

Do you mind share a sample input and output data?

 

Thanks,

Vas

Connect on LinkedIn

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.

Top Solution Authors