How to filter but with dynamic columns

you can use the below instead of using filter datatable activity. You can create a variable to be passed into the argument of dt.Select() and the value of the variable can be based on the config file
dt.Select("[col1]='a' AND [col2]='a'")

1 Like