Compare 2 tables and show only "not chosen before" values

Islom_0-1661443525792.png

We have two tables including "Available groups = A" and "The student is added to groups = C" .   C table is filled with specific Lead. For example: Lead is added to the 1 and 2 groups, next time, when we add THE lead to the C table -> We SHOULD ONLY ADD THE LEAD TO THE 3 AND 4 GROUPS.

What kind of function should we use to solve  this? 

Solved Solved
0 3 121
1 ACCEPTED SOLUTION

Steve
Platinum 5
Platinum 5

@Islom wrote:

What kind of function should we use to solve  this?


Subtract values from a list - AppSheet Help

View solution in original post

3 REPLIES 3

NOT( IN([LEAD], GroupC[LEAD]) )

Or

IN([LEAD], GroupC[LEAD]=FALSE

 

 

Steve
Platinum 5
Platinum 5

@Islom wrote:

What kind of function should we use to solve  this?


Subtract values from a list - AppSheet Help

Thanks! Steve It works!