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! Request now

Reply
Boja
Advocate II
Advocate II

Visual for multi-word text search

Hi guys,

 

The Custom Visual Text Filter by Microsoft allows searching based on a phrase. If I type for example "video voice", it will search the input as a phrase not separate words. 

Is there maybe a visual like a Text Search that can search based on several key words? Is there a visual with something like lucene syntaxe so I can search with "video + voice" ?

 

thank you for brainstorming 🙂

9 REPLIES 9
tJeffries1966
Regular Visitor

Has anyone every found a solution or are they going to build a feature like this.  I would like to see if there is something like the SQL command "Like".  Select * from <table> where <field> like '%hello%Fred%'  This will search for a record that contains those 2 words in any patteren but the text filters only all you to searc if they contain those characters in the same patteren.

v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Boja,

 

You may try "Smart Filter by OKViz". It might not meet your requirement exactly, but users can type into multiple text one by one, and choose the item from drop down list.

1.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks, Yuliana. 

It's a good idea, but it wont work in my case. The field that user are searching in contains customer feedback (very long sentences). But thank you for thinking through.

Hi @Boja,

 

Unfortunately, I could not find any other proper visual that supports multi-word text search. You may need to submit an idea here.

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-yulgu-msft 

 

Thanks Yuliana,

Great tip. Have a great day

Anonymous
Not applicable

Hi there

 

have you found any solution for your request?

 

thx and greetings

Greg_Deckler
Community Champion
Community Champion

I think you could use something like:

 

Column = 
VAR __first = SEARCH("video",[Column],1,0)
VAR __second = SEARCH("voice",[Column],1,0)
RETURN IF(__first = 0 || __second = 0,"Not Found","Found")


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thank you for wuick reply, @Greg_Deckler.

 

The solution is a good for a custom column. However, I need a visual in a form of a search box, so users can search comments based on keywords they put in. Do you maybe have something on your mind?

 

 

Anonymous
Not applicable

@Boja  use custom filters like 'smart filter' or 'text filter'  and assign that 'comments'  field to it.  Any visual u need to assign a filed to it right

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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