I have a sheet that looks like this:
[TABLE="class: grid, width: 750, align: left"]
<tbody>[TR]
[TD]First[/TD]
[TD]Last[/TD]
[TD]ID 1[/TD]
[TD]ID 2[/TD]
[TD]ID 2[/TD]
[/TR]
[TR]
[TD]Mark[/TD]
[TD]Smith[/TD]
[TD]0005-123[/TD]
[TD]0005-456[/TD]
[TD]0005-789[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Turner[/TD]
[TD]0005-234[/TD]
[TD]0005-567[/TD]
[TD]0005-8910[/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Richards[/TD]
[TD]0005-345[/TD]
[TD]0005-678[/TD]
[TD]0005-8911[/TD]
[/TR]
</tbody>[/TABLE]
I need to have one column in a second sheet that lists everything in ID 2 and ID3 so that I have this:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]IDs[/TD]
[/TR]
[TR]
[TD]0005-456[/TD]
[/TR]
[TR]
[TD]0005-567[/TD]
[/TR]
[TR]
[TD]0005-678[/TD]
[/TR]
[TR]
[TD]0005-789[/TD]
[/TR]
[TR]
[TD]0005-8910[/TD]
[/TR]
[TR]
[TD]0005-8911[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible? Would this be a VLOOKUP? I want to make sure that it only lists unique values - no duplicates.
[TABLE="class: grid, width: 750, align: left"]
<tbody>[TR]
[TD]First[/TD]
[TD]Last[/TD]
[TD]ID 1[/TD]
[TD]ID 2[/TD]
[TD]ID 2[/TD]
[/TR]
[TR]
[TD]Mark[/TD]
[TD]Smith[/TD]
[TD]0005-123[/TD]
[TD]0005-456[/TD]
[TD]0005-789[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]Turner[/TD]
[TD]0005-234[/TD]
[TD]0005-567[/TD]
[TD]0005-8910[/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]Richards[/TD]
[TD]0005-345[/TD]
[TD]0005-678[/TD]
[TD]0005-8911[/TD]
[/TR]
</tbody>[/TABLE]
I need to have one column in a second sheet that lists everything in ID 2 and ID3 so that I have this:
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]IDs[/TD]
[/TR]
[TR]
[TD]0005-456[/TD]
[/TR]
[TR]
[TD]0005-567[/TD]
[/TR]
[TR]
[TD]0005-678[/TD]
[/TR]
[TR]
[TD]0005-789[/TD]
[/TR]
[TR]
[TD]0005-8910[/TD]
[/TR]
[TR]
[TD]0005-8911[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible? Would this be a VLOOKUP? I want to make sure that it only lists unique values - no duplicates.