Forum Discussion

JustDavid's avatar
JustDavid
Helper IV
1 year ago
Solved

Filter [Content] to Table

I have a column name [Content].

 

In it, for each row, it list out the "data type", i.e. Table, Binary.

 

How can I filter to only Table?

 

When selecting the dropdown filter on the [Content] column, nothing is showing.

 

Tried using Table.SelectRows(peviousStep, each [Content] = "Table") but returns empty result

  • Try using 

    Table.SelectRows(previousStep, each Value.Is([Content], type table))

2 Replies

  • Try using 

    Table.SelectRows(previousStep, each Value.Is([Content], type table))