Forum Discussion

Tiddlerontheroo's avatar
Tiddlerontheroo
Frequent Visitor
4 years ago
Solved

"Invalid Query Locator" error message when filtering certain values in a column in query editor

moizsherwani I am trying to filter a column in powerquery to exclude certain SF opportunities.  When the step is applied in powerquery, I get this error message below.  Thanks Sir. ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Tiddlerontheroo,

    AFAIK, Text.Contains function is used to compare two text strings.
    The error message notifying you are trying to use the list in this function. Of the table fields stored the list of values. For this snceiaro, you can convert them to text strings before used in Contains function:

    Table.SelectRows(#"Previous step",each Text.Contains(Text.Combine([FieldName], ","),"keyword"))

    Regards,

    Xiaoxin Sheng