Hello,
Right now I have a macro set up to enter a time-stamp every time the macro runs. It enters it all as one line, and wrap text is not what I want to do (unless there is NO alternative).
What I want to do is convert this:
[TABLE="width: 400, align: center"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]more dates[/TD]
[TD]8/6/2014 12:26:04 PM[/TD]
[TD]more dates[/TD]
[/TR]
[TR]
[TD]data...[/TD]
[TD][/TD]
[TD]data...[/TD]
[/TR]
</tbody>[/TABLE]
into this (with a Carriage return, or new line, or whatever its called between the data and time):
[TABLE="width: 400, align: center"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]more dates[/TD]
[TD]8/6/2014
12:26:04 PM[/TD]
[TD]more dates[/TD]
[/TR]
[TR]
[TD]data...[/TD]
[TD][/TD]
[TD]data...[/TD]
[/TR]
</tbody>[/TABLE]
The line of code I am using now to get the top time-stamp is this:
Range("A24").End(xlToRight).Select
ActiveCell.Offset(-6, 1).Select
ActiveCell.Offset(-2, 0).Value = Now
Does anyone know a way to do this?
Right now I have a macro set up to enter a time-stamp every time the macro runs. It enters it all as one line, and wrap text is not what I want to do (unless there is NO alternative).
What I want to do is convert this:
[TABLE="width: 400, align: center"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]more dates[/TD]
[TD]8/6/2014 12:26:04 PM[/TD]
[TD]more dates[/TD]
[/TR]
[TR]
[TD]data...[/TD]
[TD][/TD]
[TD]data...[/TD]
[/TR]
</tbody>[/TABLE]
into this (with a Carriage return, or new line, or whatever its called between the data and time):
[TABLE="width: 400, align: center"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]more dates[/TD]
[TD]8/6/2014
12:26:04 PM[/TD]
[TD]more dates[/TD]
[/TR]
[TR]
[TD]data...[/TD]
[TD][/TD]
[TD]data...[/TD]
[/TR]
</tbody>[/TABLE]
The line of code I am using now to get the top time-stamp is this:
Range("A24").End(xlToRight).Select
ActiveCell.Offset(-6, 1).Select
ActiveCell.Offset(-2, 0).Value = Now
Does anyone know a way to do this?