I have a column of values. Some are duplicate, some are not. I need a formula to return only unique values without blank cells in the column. See example below.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Raw data[/TD]
[TD]current output[/TD]
[TD]desired output[/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD]a[/TD]
[TD]a[/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD][/TD]
[TD]b[/TD]
[/TR]
[TR]
[TD]b[/TD]
[TD]b[/TD]
[TD]c[/TD]
[/TR]
[TR]
[TD]c[/TD]
[TD]c[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]c[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Edit:
I should also mention that I am creating a template. Therefore, I do not want to use the "remove duplicates" button or any other solution that involves the user.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Raw data[/TD]
[TD]current output[/TD]
[TD]desired output[/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD]a[/TD]
[TD]a[/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD][/TD]
[TD]b[/TD]
[/TR]
[TR]
[TD]b[/TD]
[TD]b[/TD]
[TD]c[/TD]
[/TR]
[TR]
[TD]c[/TD]
[TD]c[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]c[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Edit:
I should also mention that I am creating a template. Therefore, I do not want to use the "remove duplicates" button or any other solution that involves the user.
Last edited by a moderator: