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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

How to Query Sys.Tables to find the table name

Hello,

 

In PowerBi Advanced Editor, I want to run the sys.tables quuery first to get the table name.  Then I want to query that table.  Is this possible?

 

SELECT name
FROM sys.tables
WHERE create_date = (
SELECT Max(create_date) NEWEST_VERSION
FROM sys.tables
WHERE name like '%AvailabilityStatus%'
)
2 ACCEPTED SOLUTIONS
OwenAuger
Super User
Super User

Hi @Anonymous 

Yes this is possible.

I would suggest modifying your query to include the Schema as well to avoid ambiguity.

Then use the results of the first query as inputs into a second query.

 

Try this M code in a new Power Query query:

(replace Server and Database values with appropriate values)

let
    Server = ".\SQLEXPRESS",
    Database = "OwenSandbox",
    TableList = Sql.Database(Server, Database, [Query="SELECT tables.name AS table_name#(lf)#(tab),schemas.name AS schema_name#(lf)FROM sys.tables AS tables#(lf)LEFT OUTER JOIN sys.schemas AS schemas ON tables.schema_id = schemas.schema_id#(lf)WHERE create_date = (#(lf)#(tab)#(tab)SELECT Max(create_date) NEWEST_VERSION#(lf)#(tab)#(tab)FROM sys.tables#(lf)#(tab)#(tab)WHERE name LIKE '%AvailabilityStatus%'#(lf)#(tab)#(tab))#(lf)", CreateNavigationProperties=false]),
    TableName = TableList[table_name]{0},
    SchemaName = TableList[schema_name]{0},
    NavigateToTable = Sql.Database(Server, Database){[Schema = SchemaName, Item=TableName]}[Data]
in
    NavigateToTable

 

Regards


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

Anonymous
Not applicable

It worked perfectly.   I have never been so appreciative!!!!!  Thank you.  Getting this little query to work is saving us from having to build a bunch of other things planned.

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

Hi @Anonymous 

Yes this is possible.

I would suggest modifying your query to include the Schema as well to avoid ambiguity.

Then use the results of the first query as inputs into a second query.

 

Try this M code in a new Power Query query:

(replace Server and Database values with appropriate values)

let
    Server = ".\SQLEXPRESS",
    Database = "OwenSandbox",
    TableList = Sql.Database(Server, Database, [Query="SELECT tables.name AS table_name#(lf)#(tab),schemas.name AS schema_name#(lf)FROM sys.tables AS tables#(lf)LEFT OUTER JOIN sys.schemas AS schemas ON tables.schema_id = schemas.schema_id#(lf)WHERE create_date = (#(lf)#(tab)#(tab)SELECT Max(create_date) NEWEST_VERSION#(lf)#(tab)#(tab)FROM sys.tables#(lf)#(tab)#(tab)WHERE name LIKE '%AvailabilityStatus%'#(lf)#(tab)#(tab))#(lf)", CreateNavigationProperties=false]),
    TableName = TableList[table_name]{0},
    SchemaName = TableList[schema_name]{0},
    NavigateToTable = Sql.Database(Server, Database){[Schema = SchemaName, Item=TableName]}[Data]
in
    NavigateToTable

 

Regards


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn
Anonymous
Not applicable

It worked perfectly.   I have never been so appreciative!!!!!  Thank you.  Getting this little query to work is saving us from having to build a bunch of other things planned.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.