fireboltpk
New Member
- Joined
- May 29, 2017
- Messages
- 9
Hi,
I have a very large data set, 10,000 rows and 150 columns.
I need to extract and display unique values from the rows. My data is arranged as follows.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[TD]H[/TD]
[TD]I[/TD]
[TD]J[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Boston[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]5[/TD]
[TD][/TD]
[TD]3[/TD]
[TD]7[/TD]
[TD][/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]NYC[/TD]
[TD]1[/TD]
[TD][/TD]
[TD]2[/TD]
[TD][/TD]
[TD]2[/TD]
[TD][/TD]
[TD]4[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
Desired Result Display:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Boston[/TD]
[TD]3[/TD]
[TD]5[/TD]
[TD]7[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]NYC[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]4[/TD]
[TD]8[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
There over over 100 unique values in the rows I have.
What is the best way to go about it?
Thanks!
I have a very large data set, 10,000 rows and 150 columns.
I need to extract and display unique values from the rows. My data is arranged as follows.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[TD]H[/TD]
[TD]I[/TD]
[TD]J[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Boston[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]5[/TD]
[TD][/TD]
[TD]3[/TD]
[TD]7[/TD]
[TD][/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]NYC[/TD]
[TD]1[/TD]
[TD][/TD]
[TD]2[/TD]
[TD][/TD]
[TD]2[/TD]
[TD][/TD]
[TD]4[/TD]
[TD]8[/TD]
[/TR]
</tbody>[/TABLE]
Desired Result Display:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Boston[/TD]
[TD]3[/TD]
[TD]5[/TD]
[TD]7[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]NYC[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]4[/TD]
[TD]8[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
There over over 100 unique values in the rows I have.
What is the best way to go about it?
Thanks!