Lee D
Lee D

Reputation: 1

Excel - find duplicates in column A and move the value to column B

If a value is found twice in column A, how do I put that value into the cell beside it in the next column?

Do I need vlookup?

Upvotes: 0

Views: 33

Answers (1)

Ralph
Ralph

Reputation: 9444

You could copy the following formula into cell B1 and then copy the formula down (if I understood your question correctly):

=IF(COUNTIF(A:A,A1)>1,A1,"")

Upvotes: 1

Related Questions