Hello all,
I’m searching for a solution for this filter-task:
I have datatable1 with two columns (‘name’ and ‘user-ID’) and datatable2 with a column ‘user-ID’ and some more columns.
I need a new datatable, that contains all rows from dt2, where the value in ‘user-ID’ is one of the values in dt1.user-ID.
I could iterate through dt2 with for each row and check if the value is in dt1, but dt2 has > 1 million rows. And I have dt3 with values in a column ‘Fkt-ID’ and these values are also for filtering in dt2, where I have the same column.
I tried to find a solution here in the forum, but I didn’t find one - maybe I used the wrong search expression.
If someone can help me with the expression for dt1 and dt2 I think I can build it with dt3 by myself.
Hi @Sudharsan_Ka,
the expression is case-sensitive? I Have ‘5zqs’ vs ‘5ZQS’.
I changed in dt2 the value from ‘5zqs’ to ‘5ZQS’ and now it works!
Can I add “.tolower” to get all matches?
And can I add a second (or third) condition with “and” in the expression? If yes, at which position?