I have a spreadsheet that looks like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Student[/TD]
[TD]Course[/TD]
[/TR]
[TR]
[TD]John Smith[/TD]
[TD]English;Math;Science;History[/TD]
[/TR]
[TR]
[TD]Jane Smith[/TD]
[TD]Math;History;Art[/TD]
[/TR]
</tbody>[/TABLE]
I would like to replace all semicolons with line breaks if possible, so that it would appear like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Student[/TD]
[TD]Course[/TD]
[/TR]
[TR]
[TD]John Smith[/TD]
[TD]English
Math
Science
History[/TD]
[/TR]
[TR]
[TD]Jane Smith[/TD]
[TD]Math
History
Art[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible?
[TABLE="width: 500"]
<tbody>[TR]
[TD]Student[/TD]
[TD]Course[/TD]
[/TR]
[TR]
[TD]John Smith[/TD]
[TD]English;Math;Science;History[/TD]
[/TR]
[TR]
[TD]Jane Smith[/TD]
[TD]Math;History;Art[/TD]
[/TR]
</tbody>[/TABLE]
I would like to replace all semicolons with line breaks if possible, so that it would appear like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Student[/TD]
[TD]Course[/TD]
[/TR]
[TR]
[TD]John Smith[/TD]
[TD]English
Math
Science
History[/TD]
[/TR]
[TR]
[TD]Jane Smith[/TD]
[TD]Math
History
Art[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible?