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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

How COUNT a value unaffected by filters

I want to count the # of times a text value is in a column, but when I filter those text values, that total count does not change. I have mutliple related columns and when I filter down the line it decreases the count of some of the first items.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

I updated your sample pbix file(see the attachment), please check whether that is what you want. Please update the formula of measure [unfiltered_count] as below:

unfiltered_count = 
VAR _species =
    CALCULATETABLE (
        VALUES ( 'plant_table'[Species] ),
        FILTER (
            'plant_table',
            'plant_table'[Type] IN ALLSELECTED ( 'plant_table'[Type] )
        )
    )
RETURN
    CALCULATE (
        COUNT ( plant_table[Species] ),
        FILTER ( ALL ( 'plant_table' ), 'plant_table'[Species] IN _species )
    )

yingyinr_0-1654226138478.png

Best Regards

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous ,

 

calculate(Count(Table[Column]), all(Table) )

 

or

 

calculate(Count(Table[Column]), all() )

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

The current equation returns the total entries in the column rather than the # of times each values is repeated. I have three values, 'text1', 'text2', 'text3' and they all return the same total number. How could I each values # of occurences?

Anonymous
Not applicable

Hi @Anonymous ,

I'm not clear about your requirement, could you please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Anonymous
Not applicable

So this is the data normally

MulberyPie_0-1654179927298.png

 

 

When I filter I want the count column to have the same numbers as if it were unfiltered, but the rows shown be filtered. This is the output I want.

MulberyPie_1-1654180023745.png

This is the output I normally get

MulberyPie_2-1654180055804.png

This is the file

 

Anonymous
Not applicable

Hi @Anonymous ,

I updated your sample pbix file(see the attachment), please check whether that is what you want. Please update the formula of measure [unfiltered_count] as below:

unfiltered_count = 
VAR _species =
    CALCULATETABLE (
        VALUES ( 'plant_table'[Species] ),
        FILTER (
            'plant_table',
            'plant_table'[Type] IN ALLSELECTED ( 'plant_table'[Type] )
        )
    )
RETURN
    CALCULATE (
        COUNT ( plant_table[Species] ),
        FILTER ( ALL ( 'plant_table' ), 'plant_table'[Species] IN _species )
    )

yingyinr_0-1654226138478.png

Best Regards

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

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