Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
i have multiples excel files with data saved in a certain worksheet. The name of this worksheet is different in every Excel file, but the name of the worksheet always starts with "Data ". How to i open the data from a specific worksheet?
So somehow, if the Name begins with "Data ", the Query should open (or click) this Table.
What I tried so far: Adding a custom Column, which has the Name of the Data, if it starts with "Data ". No I tried to open it, with a Conditional, but havent managed to do it.
#"Added Custom" = Table.AddColumn(Source, "GetDataName", each if Text.StartsWith([Name],"Data ") then [Name] else null),
How do I open a Table based on the dynamic name?
Solved! Go to Solution.
Hi @Anonymous ,
You should just be able to filter your name column, something like this:
Table.SelectRows(previousStepName, each Text.StartsWith([Name], "Data "))
Then expand the [Data] column using the button at the top right that looks like two arrows bending away from each other.
Pete
Proud to be a Datanaut!
Hi @Anonymous ,
You should just be able to filter your name column, something like this:
Table.SelectRows(previousStepName, each Text.StartsWith([Name], "Data "))
Then expand the [Data] column using the button at the top right that looks like two arrows bending away from each other.
Pete
Proud to be a Datanaut!
Thank you!
How do i now open this table ? I usually click on the Table. Clicking it hardcodes the name, tough.
Pete
Proud to be a Datanaut!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.