drag-driver
Board Regular
- Joined
- Feb 18, 2002
- Messages
- 91
I have a value in cell A1 and i want to return the value true in C1 if A1 is equal to any value in the colum B. Columb B contains 150 cells of data.
On 2002-03-05 08:34, drag-driver wrote:
I have a value in cell A1 and i want to return the value true in C1 if A1 is equal to any value in the colum B. Columb B contains 150 cells of data.
On 2002-03-05 08:59, Aladin Akyurek wrote:
On 2002-03-05 08:34, drag-driver wrote:
I have a value in cell A1 and i want to return the value true in C1 if A1 is equal to any value in the colum B. Columb B contains 150 cells of data.
Been there... done that!
In C1 enter: =ISNUMBER(MATCH(A1,B:B,0))
If needed, B:B can be replaced by B1:B150.