Hi,
I have two tables A & B. I have columns, Status A and Status B, in tables A and B, respectively. The Status columns are of type Enumlist.
I want to get the row ids of those rows from table B for which the Status B has at least one or all the values present in column Status A in table A. So, basically, I need to compare each value from a list of values in one column of a table with each value from a list of values in a column of another table.
I’ve tried both functions, IN() and Contains(), but neither has produced the desired results.
SELECT(
Table B [Id],
IN(
[_THISROW].[Status A], Table B [Status B]
)
)