Forum Discussion
MASaburudeen
Sep 18, 2023Copper Contributor
Difference Between two lists
How to find difference between two given lists? We generally use VLookup and other lookup functions for finding the common entries from 2 lists. Here, I have given formula for finding the d...
NikolinoDE
Sep 18, 2023Gold Contributor
Maybe you can use the LET function, which allows you to create a variable and use it within a formula.
=LET(not_attended, FILTER(A:A, COUNTIF(B:B, A:A) = 0), not_attended)
LET function is not tested, use at the moment Excel 2016.
Otherwise, if it has to be a formula, the example would have to be a Countif function in column C and then the filter function in column D. Something like that.
Column C: Formula: =COUNTIF(B:B, A2)
Column 😧 Formula: =FILTER(A:A, C:C = 0).
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark them as helpful and like it!
This will help all forum participants.