Hi.
I need to display in a gallery only the records that do not exists in another table. These are the tables:
| test_origin | test_lookup |
| line | l_linea (lookup column from test_origin.line and UNIQUE) |
| | user |
And this is the current data stored in the tables:
| test_origin | test_lookup |
| 111 | 111, user1 |
222 | 222, user2 |
333 | |
What I want is to display only the records from test_origin that not exists in test_lookup, in that case, only display the 333 record.
I have tried this solution from another post but doesn't work for me.
Filter(test_origin, !(line in test_lookup[@l_linea]))


Any ideas about other ways to filter?
Thank you in advance!