Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2025 09:59 AM
Our data engineering team already worked in theses actions. It worked when I filtered the tables in Microsoft Fabriq using the Power Query below:
Table.SelectRows(
Table.SelectColumns( #"Navigation 2"{[Name = "defects", Kind = "Table"]}[Data], {"column1", "column2", "column3", "column4", "column5", "column6", "column7", "column8", "column9", "column10", "column11", "column12", "column13", "column14", "column15", "column16", "column17"} ),
each [station] = "North" or [station] = "South"
)
Do you know why can't I get the whole table??
Do you know why can't I get the whole table??