Good afternoon,
I am trying to figure out a formula that returns true/false on two array saying if they match. A simple example of what I want is as follows:
Array1: {"A", "C", "D"}
Array2: {"A", "B", "C", "D", "E"}
Desired result: {True, False, True, True, False}
Using ={"A", "C"...