Helo good people of mrexcel forum,
Lets say I have table like this
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Items[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Knife[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Plier[/TD]
[/TR]
</tbody>[/TABLE]
I want to add a "prefix" (dont know if I use the correct term here) to every of the ID numbers. Lets say I want to add prefix "10". So the transformed table would look like this:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Items[/TD]
[/TR]
[TR]
[TD]101[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]101[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]103[/TD]
[TD]Knife[/TD]
[/TR]
[TR]
[TD]103[/TD]
[TD]Plier[/TD]
[/TR]
</tbody>[/TABLE]
How can I do this?
EDIT: I mean of course, aside from manually typing "10" to every cell lol
Lets say I have table like this
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Items[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Knife[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Plier[/TD]
[/TR]
</tbody>[/TABLE]
I want to add a "prefix" (dont know if I use the correct term here) to every of the ID numbers. Lets say I want to add prefix "10". So the transformed table would look like this:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Items[/TD]
[/TR]
[TR]
[TD]101[/TD]
[TD]Orange[/TD]
[/TR]
[TR]
[TD]101[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Milk[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Bread[/TD]
[/TR]
[TR]
[TD]102[/TD]
[TD]Apple[/TD]
[/TR]
[TR]
[TD]103[/TD]
[TD]Knife[/TD]
[/TR]
[TR]
[TD]103[/TD]
[TD]Plier[/TD]
[/TR]
</tbody>[/TABLE]
How can I do this?
EDIT: I mean of course, aside from manually typing "10" to every cell lol