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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
sanjanarama
Resolver I
Resolver I

Q&A visual not displaying all rows

Q&A visual is not displaying all of the matched rows with key word, for example if i search with amazon , it only displays one row rather than displaying 4 rows in my data set

Can help me out.

numbercustomer namehierachy codeurlcustomer engagement
100AMAZONunified global customer amazon.comsales pipeline
1001aws  amazon
1002amazon webservice aws.amazon.comsales pipeline
1003wholes food market  www.wholesfoodmarket.comsales pipeline

sanjanarama_0-1641461119868.png

 

2 REPLIES 2
Anonymous
Not applicable

Hi  @sanjanarama ,

Q&A will only filter if it supports the exact same string.

Can you consider using dax implementation

Here are the steps you can follow:

1. Create measure.

Flag =
IF(CONTAINSSTRING(MAX('Table'[customer engagement]),"amazon") ||
    CONTAINSSTRING(MAX('Table'[customer name]),"amazon") ||
    CONTAINSSTRING(MAX('Table'[hierachy code]),"amazon")||
    CONTAINSSTRING(MAX('Table'[url]),"amazon"),1,0)

2. Place [Flag] in Filters, set is=1, apply filter.

vyangliumsft_0-1641781315985.jpeg

3. Result:

vyangliumsft_1-1641781315990.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

@Anonymous 
thank you so much for taking time. how to leverage this solution for any values/strings used in Q&A search visual?? you have only showed result in a table

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors