I have two lists to compare:
I want to compare List A and List B such that if any of the dates from ListB is present in List A then return true.
For example, if 14-01-2020 (which is in List B) is present in List A (which is definitely present) then it should return true.
How to do that?
Please note: The data in List A contains the dates of an entire month, whereas List B contains only a few dates.