jb
Member
I have a table of 20 rows and 2 columns.
User will fill data everyday in this table. It depend on user that how many rows he/she will fill. But it will not go beyond 20 rows.
For e.g
[pre]
[/pre]
I want to generate concatenated list at bottom of table like:
ABC, JKL (AA); PQR (BB); LMN , DEF (CC)
If second column is same for multiple rows then after separating first column values by comma the second column value should come only once.
It is not fixed that how many times second column will repeat.
Help me.
User will fill data everyday in this table. It depend on user that how many rows he/she will fill. But it will not go beyond 20 rows.
For e.g
[pre]
Code:
ABC AA
JKL AA
PQR BB
LMN CC
DEF CC
I want to generate concatenated list at bottom of table like:
ABC, JKL (AA); PQR (BB); LMN , DEF (CC)
If second column is same for multiple rows then after separating first column values by comma the second column value should come only once.
It is not fixed that how many times second column will repeat.
Help me.