Hello!
So I've been having trouble with this - I have a column of user IDs, and I need to find which IDs appear more than once in the column, and extract those IDs to a new column. The scenario, if it helps, is that the user IDs represent purchases, and we want to reward customers who purchase more than once, so we need the list of IDs of customers who have purchased multiple times. I can't use a Pivot Table to count the number of times a value occur. Also, I have no idea what IDs are being put into the ID column, the order the IDs are in the ID column, or how many IDs there are in total.
If Column A is the provided data, and Column C is the extracted duplicates, it should look like:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID[/TD]
[TD][/TD]
[TD]ID's that occur more than once[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]100[/TD]
[TD][/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]200[/TD]
[TD][/TD]
[TD]400[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]300[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]100[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]400[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]400[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance! Let me know if you need more information.
So I've been having trouble with this - I have a column of user IDs, and I need to find which IDs appear more than once in the column, and extract those IDs to a new column. The scenario, if it helps, is that the user IDs represent purchases, and we want to reward customers who purchase more than once, so we need the list of IDs of customers who have purchased multiple times. I can't use a Pivot Table to count the number of times a value occur. Also, I have no idea what IDs are being put into the ID column, the order the IDs are in the ID column, or how many IDs there are in total.
If Column A is the provided data, and Column C is the extracted duplicates, it should look like:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID[/TD]
[TD][/TD]
[TD]ID's that occur more than once[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]100[/TD]
[TD][/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]200[/TD]
[TD][/TD]
[TD]400[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]300[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]100[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]400[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]400[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance! Let me know if you need more information.