I have a batch of data in the following format.
This is my input:
[TABLE="width: 500"]
<tbody>[TR]
[TD]GROUP[/TD]
[TD]EMPLOYEE[/TD]
[/TR]
[TR]
[TD]someEmail1@here.com[/TD]
[TD]Jane Doe[/TD]
[/TR]
[TR]
[TD]someOtherEmail@there.com[/TD]
[TD]Johnny Lee[/TD]
[/TR]
[TR]
[TD]someOtherEmail@there.com[/TD]
[TD]Jane Doe[/TD]
[/TR]
[TR]
[TD]someEmail1@here.com[/TD]
[TD]Jacob Smith[/TD]
[/TR]
</tbody>[/TABLE]
My Expected Output would be:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Jane Doe[/TD]
[TD]someEmail1@here.com someOtherEmail@there.com[/TD]
[/TR]
[TR]
[TD]Johnny Lee[/TD]
[TD]someOtherEmail@there.com[/TD]
[/TR]
[TR]
[TD]Jacob Smith[/TD]
[TD]someEmail1@here.com[/TD]
[/TR]
</tbody>[/TABLE]
Essentially I need a formula that will combine the values of the groups column but match it
on the names in the rows. Please note that the names are random, the emails are random, and there are repeating names.
This is my input:
[TABLE="width: 500"]
<tbody>[TR]
[TD]GROUP[/TD]
[TD]EMPLOYEE[/TD]
[/TR]
[TR]
[TD]someEmail1@here.com[/TD]
[TD]Jane Doe[/TD]
[/TR]
[TR]
[TD]someOtherEmail@there.com[/TD]
[TD]Johnny Lee[/TD]
[/TR]
[TR]
[TD]someOtherEmail@there.com[/TD]
[TD]Jane Doe[/TD]
[/TR]
[TR]
[TD]someEmail1@here.com[/TD]
[TD]Jacob Smith[/TD]
[/TR]
</tbody>[/TABLE]
My Expected Output would be:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Jane Doe[/TD]
[TD]someEmail1@here.com someOtherEmail@there.com[/TD]
[/TR]
[TR]
[TD]Johnny Lee[/TD]
[TD]someOtherEmail@there.com[/TD]
[/TR]
[TR]
[TD]Jacob Smith[/TD]
[TD]someEmail1@here.com[/TD]
[/TR]
</tbody>[/TABLE]
Essentially I need a formula that will combine the values of the groups column but match it
on the names in the rows. Please note that the names are random, the emails are random, and there are repeating names.