Reputation: 1
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
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