Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi all,
I have a table which consists of inspection event details, and some inspections include nested information (actions raised during the inspections). Is there are way that I can clean this table or export the nested rows of actions into a related query, so that I can use the nested information?
The table currently looks like this:
Very new to this, so any help is greatly appreciated!
Solved! Go to Solution.
Hi,
It would help if you also explain what the result should look like.
I assumed it shoud be something like this, with left MasterTable and right ActionTable (just a few rows):
Queries (you can copy and paste in the Advanced Query edtor, accessible via "Edit Query"):
Both queries are generated using standard menu options in the Query Editor.
MasterTable:
let
Source = Table1,
#"Filtered Rows" = Table.SelectRows(Table1, each ([ID] <> null))
in
#"Filtered Rows"ActionTable:
let
Source = Table1,
#"Filled Down" = Table.FillDown(Source,{"ID"}),
#"Filtered Rows" = Table.SelectRows(#"Filled Down", each ([Method] = null)),
#"Renamed Columns" = Table.RenameColumns(#"Filtered Rows",{{"Site", "ActionID"}, {"Type", "Action Taken"}}),
#"Filtered Rows1" = Table.SelectRows(#"Renamed Columns", each ([ActionID] <> "ID")),
#"Removed Columns" = Table.RemoveColumns(#"Filtered Rows1",{"Method", "Event Date"})
in
#"Removed Columns"
Hi,
It would help if you also explain what the result should look like.
I assumed it shoud be something like this, with left MasterTable and right ActionTable (just a few rows):
Queries (you can copy and paste in the Advanced Query edtor, accessible via "Edit Query"):
Both queries are generated using standard menu options in the Query Editor.
MasterTable:
let
Source = Table1,
#"Filtered Rows" = Table.SelectRows(Table1, each ([ID] <> null))
in
#"Filtered Rows"ActionTable:
let
Source = Table1,
#"Filled Down" = Table.FillDown(Source,{"ID"}),
#"Filtered Rows" = Table.SelectRows(#"Filled Down", each ([Method] = null)),
#"Renamed Columns" = Table.RenameColumns(#"Filtered Rows",{{"Site", "ActionID"}, {"Type", "Action Taken"}}),
#"Filtered Rows1" = Table.SelectRows(#"Renamed Columns", each ([ActionID] <> "ID")),
#"Removed Columns" = Table.RemoveColumns(#"Filtered Rows1",{"Method", "Event Date"})
in
#"Removed Columns"
Of course! thanks so much. I was over-thinking it, when all I had to do was duplicate the table and filter accordingly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 29 | |
| 27 | |
| 25 |