0

I need to compare a column from two different Excel sheets and return a value of true or false.

1 Answer 1

2

Comparing the whole column:

=(Sheet1!A:A=Sheet2!A:A)

or comparing a cell in the two sheets:

=(Sheet1!A1=Sheet2!A1)

This will put TRUE in the cell where the formula is, if the two columns or cells are the same, and FALSE if they're different.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .