Hi,
I have a column A which contains email ids of all our users. Basically I want to add two additional columns ( First and Last name) which can be retrieved from those email:
Current [TABLE="width: 500"]
<tbody>[TR]
[TD]Email[/TD]
[TD]Tel[/TD]
[TD]Exchange[/TD]
[/TR]
[TR]
[TD]kate.nash@theice.com[/TD]
[TD]+13230323032[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]amar.prem@theice.com[/TD]
[TD]+12324434344[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]henry.graves@theice.com[/TD]
[TD]+14323434434[/TD]
[TD]CBOT[/TD]
[/TR]
</tbody>[/TABLE]
Desired Output
[TABLE="width: 500"]
<tbody>[TR]
[TD]Email[/TD]
[TD]First Name[/TD]
[TD]Last Name[/TD]
[TD]Tel[/TD]
[TD]Exchange[/TD]
[/TR]
[TR]
[TD]kate.nash@theice.com[/TD]
[TD]Kate[/TD]
[TD]Nash[/TD]
[TD]+13230323032[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]amar.prem@theice.com[/TD]
[TD]Amar[/TD]
[TD]Prem[/TD]
[TD]+12324434344[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]henry.graves@theice.com[/TD]
[TD]Henry[/TD]
[TD]Graves[/TD]
[TD]+14323434434[/TD]
[TD]CBOT[/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance for your help
I have a column A which contains email ids of all our users. Basically I want to add two additional columns ( First and Last name) which can be retrieved from those email:
Current [TABLE="width: 500"]
<tbody>[TR]
[TD]Email[/TD]
[TD]Tel[/TD]
[TD]Exchange[/TD]
[/TR]
[TR]
[TD]kate.nash@theice.com[/TD]
[TD]+13230323032[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]amar.prem@theice.com[/TD]
[TD]+12324434344[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]henry.graves@theice.com[/TD]
[TD]+14323434434[/TD]
[TD]CBOT[/TD]
[/TR]
</tbody>[/TABLE]
Desired Output
[TABLE="width: 500"]
<tbody>[TR]
[TD]Email[/TD]
[TD]First Name[/TD]
[TD]Last Name[/TD]
[TD]Tel[/TD]
[TD]Exchange[/TD]
[/TR]
[TR]
[TD]kate.nash@theice.com[/TD]
[TD]Kate[/TD]
[TD]Nash[/TD]
[TD]+13230323032[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]amar.prem@theice.com[/TD]
[TD]Amar[/TD]
[TD]Prem[/TD]
[TD]+12324434344[/TD]
[TD]CBOT[/TD]
[/TR]
[TR]
[TD]henry.graves@theice.com[/TD]
[TD]Henry[/TD]
[TD]Graves[/TD]
[TD]+14323434434[/TD]
[TD]CBOT[/TD]
[/TR]
</tbody>[/TABLE]
Thanks in advance for your help