I have a column of numbers that I need split into three columns. The numbers can have 8,9 or 10 digits. I need to split from the right into three columns
Current data
[TABLE="width: 10"]
<tbody>[TR]
[TD]235000035[/TD]
[/TR]
[TR]
[TD]75000035[/TD]
[/TR]
[TR]
[TD]1865000035[/TD]
[/TR]
</tbody>[/TABLE]
Desired result
[TABLE="width: 4"]
<tbody>[TR]
[TD]23[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
[TR]
[TD]186[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
</tbody>[/TABLE]
Any help is greatly appreciated.
Thanks
Current data
[TABLE="width: 10"]
<tbody>[TR]
[TD]235000035[/TD]
[/TR]
[TR]
[TD]75000035[/TD]
[/TR]
[TR]
[TD]1865000035[/TD]
[/TR]
</tbody>[/TABLE]
Desired result
[TABLE="width: 4"]
<tbody>[TR]
[TD]23[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
[TR]
[TD]186[/TD]
[TD]5000[/TD]
[TD]035[/TD]
[/TR]
</tbody>[/TABLE]
Any help is greatly appreciated.
Thanks