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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
MohamedFowzan1
Frequent Visitor

Global Text Search and Filter Across All Tables in Power BI

Greetings,

Currently, couldn't find a method to enable users to search through every column in every table for a particular text string and promptly filter visuals on the page with corresponding results (Acting like a Search Bar).

While workarounds like concatenating columns exist, they're inefficient and impractical for large datasets. Any enhancement facilitating this capability would greatly enhance efficiency and empower users to efficiently delve into their data.

Thank you.

5 REPLIES 5
v-rzhou-msft
Community Support
Community Support

Hi @MohamedFowzan1 ,

 

As far as I know, the calculations like sum/max/find are all based on columns. According to your statement, you need to find specific text from multiple columns in different tables. And now you are trying CONCATENATE() function by DAX. 

I think combine the columns into one column is a good idea to help your calculation. If it will make a bad performance in Power BI by DAX, I suggest you to try M Query in Power Query Editor.

You can create a new table with all merged columns from all tables and then search it with slicer.

My Sample:

vrzhoumsft_0-1708926019862.png

vrzhoumsft_1-1708926035528.png

M Query:

let 
    MergedfromTable1 = Table.AddColumn(Table.SelectColumns(Table.CombineColumns(Table1,{"Value1", "Value2"},Combiner.CombineTextByDelimiter("-", QuoteStyle.None),"Merged"),"Merged"),"TableName",each "Table1"),
    MergedfromTable2 = Table.AddColumn(Table.SelectColumns(Table.CombineColumns(Table2,{"Value1", "Value2"},Combiner.CombineTextByDelimiter("-", QuoteStyle.None),"Merged"),"Merged"),"TableName",each "Table2"),
    MergedfromTable3 = Table.AddColumn(Table.SelectColumns(Table.CombineColumns(Table3,{"Value1", "Value2"},Combiner.CombineTextByDelimiter("-", QuoteStyle.None),"Merged"),"Merged"),"TableName",each "Table3"),
    AppendTables =  Table.Combine({MergedfromTable1, MergedfromTable2,MergedfromTable3})
in
    AppendTables

Result is as below.

vrzhoumsft_2-1708926069239.png

 

Best Regards,
Rico Zhou

 

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

 

Thank you for the input. This would again not help my case if I have so many columns and even in Power Query it seems to affect the performance. If there is any work around to achieve this without having to concatenate columns that would be perfect.

amitchandak
Super User
Super User

@MohamedFowzan1 , There is a text search visual that allows multiple columns, check if that can help

 

https://appsource.microsoft.com/en-us/product/power-bi-visuals/databrotherssro1596013704866.dbi_text...

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

@MohamedFowzan1  Is this issue resolved? Let me know, please! 

I have the same concern!

Thank you for the input @amitchandak . I have explored this visual, I need to search all the columns like a search bar. In this visual, I am having to select the column that I want to search through and then filter which does not help my case.

 

Only one column is taken into consideration when using this custom visual.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.