Select items by comparing lists of dates

Hi

I have a question and would appreciate some help.
I have an ERGO table in which I have a virtual column DATES1 as a list of different dates.
In another CHECKS table I also have a virtual column DATES2 as a list of dates.
What I want is to select only the raws from the ERGO table where no date from the virtual column DATES1 will be in the list of dates in the virtual column DATES2 from the CHECKS table
What expression can I use to make this choice?

Thanks

0 6 239
6 REPLIES 6

Steve
Platinum 4
Platinum 4

This?

ISBLANK(
  FILTER(
    "CHECKS",
    ISNOTBLANK(
      INTERSECT(
        [DATES2],
        [_THISROW].[DATES1]
      )
    )
  )
)

Thanks Steve
I have this error message
โ€œINTERSECT: both lists must be of the same type.โ€

What are the types of the DATES1 and DATES2 columns? EnumList? List? Lists of what? Date? DateTime?

DATES1
Type: List
Element type: List

DATES2
Type: List
Element type: Date

DATES1 is a list of lists? Why? What is the type of the elements of the internal list?

It collects various dates where

[DATES] in the table ERGO is
Type: List
Element type: Date

I use it again in an another virtual column in another table for comparing this with other data
In this second use [DATES] is a list of lists.

Itโ€™s complicated.

Nevermind, I will use the data with different form and I will escape this problem

Thank you again Steve

Top Labels in this Space