User Profile
mTalha_Khan
New Member
Joined 3 years ago
User Widgets
Contributions
Re: Table List and Field List
you also make inforamation Schema table by using "Table.Schema(TableName)". steps for multiple tables: // Create a blank query in power Query editor // open the Advance editor and paste the script. // update the tables name and save. let Source = Table.Schema(fristTable), CustomColumn_Table1 = Table.AddColumn(Source, "QueryName", each "fristTable"), secondTable_schema=Table.Schema(secondTable), customColumn_Table2 = Table.AddColumn(secondTable_schema, "QueryName", each "secondTable"), Final_Table = Table.Combine({CustomColumn_Table1 ,customColumn_Table2 }) in Final_Table Note: For 2 or more tables repeat the steps under the "let" and put final output variable after "in" label.10KViews0likes0Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.