viniciusmartins
New Contributor II

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??