Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hello everybody,
I am working on a data set/ data flow that contains all of our ERP data/ tables.
Now I would like to determine the attributes per table:
Is there any way to determine that with Power BI tools?
Hi @joshua1990 ,
In Power BI Desktop, you could try to create a blank query like so:
let
Source = #sections,
Section1 = Source[Section1],
#"Converted to Table" = Record.ToTable(Section1),
#"Removed Bottom Rows" = Table.RemoveLastN(#"Converted to Table",1),
#"Added Custom" = Table.AddColumn(#"Removed Bottom Rows", "ColumnCount", each Table.ColumnCount([Value])),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "RowCount", each Table.RowCount([Value])),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom1",{"Value"})
in
#"Removed Columns"
Then, you will get this:
But it doesn't work in dataflow. And I am trying to find another workaround. If there is, I will reply here in time.
BTW, .pbix file attached.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 19 | |
| 7 | |
| 7 | |
| 7 | |
| 7 |
| User | Count |
|---|---|
| 51 | |
| 46 | |
| 25 | |
| 25 | |
| 23 |