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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
clarawang_12
Frequent Visitor

How to display count of search results with Text Filter and Text Slicer Filter

Dear Community,

 

I'm using Text Filter and Text Slicer Filter to search contents of power BI page, is there a way to show the count of search results? For example, search "Content A" in Text filter, and a card or message will show how many "Content A" in this page.

 

 

Kind regards,

Clara 

1 ACCEPTED SOLUTION
v-binbinyu-msft
Community Support
Community Support

Hi @clarawang_12 ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1675317243491.png

2. add a tabl visual with fields, and add  a text filter with field

vbinbinyumsft_1-1675317407630.png

3. create a measure with below dax formula

Measure =
VAR pt =
    SELECTEDVALUE ( 'Table'[Product] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), CONTAINSSTRING ( [Product], UPPER ( pt ) ) )
RETURN
    IF ( ISFILTERED ( 'Table'[Product] ), COUNTROWS ( tmp ), 0 )

4. add a card visual with measure

vbinbinyumsft_2-1675317523208.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @clarawang_12 ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1675317243491.png

2. add a tabl visual with fields, and add  a text filter with field

vbinbinyumsft_1-1675317407630.png

3. create a measure with below dax formula

Measure =
VAR pt =
    SELECTEDVALUE ( 'Table'[Product] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), CONTAINSSTRING ( [Product], UPPER ( pt ) ) )
RETURN
    IF ( ISFILTERED ( 'Table'[Product] ), COUNTROWS ( tmp ), 0 )

4. add a card visual with measure

vbinbinyumsft_2-1675317523208.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

amitchandak
Super User
Super User

@clarawang_12 , if test filter is applied in page

 

then countrows(Table)

 

or countrows(Table, Table[Column], "_1", [Measure]))

 

should give you the filtered count.

 

Or try

 

CONTAINSSTRING and CONTAINSSTRINGEXACT: https://www.youtube.com/watch?v=XbgLGDvWdWQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=44

 

SEARCH and FIND: https://www.youtube.com/watch?v=mZt0HJw4gjQ&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=45

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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