in excel, I have four columns. Columns A & B correspond with each other and columns C & D correspond with each other. What i'd like to do is create a formula that takes a value from column A, searches through column C, looking for a match. If it finds a match, it will then take the corresponding value (same row) from column B, and search for a value in column D that matches with the value from column B. If both values end up finding matches, return a 1 in column E, in the row that A & B are in.
This is what I have so far, entered in column E.
=IF(MATCH(A1,$C:$C,0)MATCH(B1,$D:$D,0),1,0)
My issue is that I don't know how to make the match for B check only the row where A found a match.
If there are any issues understanding my question or if you need me to help clarify something, please let me know. I've had this problem for a few days now and can't seem to figure it out. I'll be actively checking this thread for the next hour.
Thank you.