Forum Discussion
smpa01
3 years agoCommunity Champion
ANTI inside GENERATE?
Is it possible to factor an ANTI JOIN inside GENERATE. I am currently doing this
EVALUATE
VAR __fact =
DATATABLE (
"fact.fact", STRING,
{
{ "a Messi" },
...
- 3 years ago
How about this?
res = FILTER ( __fact, ISEMPTY ( FILTER ( __exec, RIGHT ( [fact.fact], LEN ( [exec.name] ) ) = [exec.name] ) ) )
AlexisOlson
3 years agoSuper User
How about this?
res =
FILTER (
__fact,
ISEMPTY (
FILTER (
__exec,
RIGHT ( [fact.fact], LEN ( [exec.name] ) ) = [exec.name]
)
)
)