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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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