What I'm trying to do is to distribute the date of encoding of several reports that I had merged in Excel into a set of columns where the dates are shown to each row of data. Here's a screenshot of the raw file:
[TABLE="width: 192"]
[TD="width: 64"]Name[/TD]
[TD="width: 64"]Address[/TD]
[TD="width: 64"]Age[/TD]
[TD="class: xl63, align: right"]5-Jan-15[/TD]
Child1
[/td]Location1
[/td]
[TD="align: right"]10[/TD]
Child2
[/td]Location2
[/td]
[TD="align: right"]9[/TD]
Child3
[/td]Location3
[/td]
[TD="align: right"]8[/TD]
[TD="class: xl63, align: right"]8-Feb-15[/TD]
Child4
[/td]Location4
[/td]
[TD="align: right"]7[/TD]
Child5
[/td]Location5
[/td]
[TD="align: right"]6[/TD]
[/TABLE]
I'm trying to make it like this one:
[TABLE="width: 256"]
[TD="width: 64"]Name[/TD]
[TD="width: 64"]Address[/TD]
[TD="width: 64"]Age[/TD]
[TD="width: 64"]Date encoded[/TD]
Child1
[/td]Location1
[/td]
[TD="align: right"]10[/TD]
[TD="class: xl65, align: right"]5-Jan-15[/TD]
Child2
[/td]Location2
[/td]
[TD="align: right"]9[/TD]
[TD="class: xl65, align: right"]5-Jan-15[/TD]
Child3
[/td]Location3
[/td]
[TD="align: right"]8[/TD]
[TD="class: xl65, align: right"]5-Jan-15[/TD]
Child4
[/td]Location4
[/td]
[TD="align: right"]7[/TD]
[TD="class: xl65, align: right"]8-Feb-15[/TD]
Child5
[/td]Location5
[/td]
[TD="align: right"]6[/TD]
[TD="class: xl65, align: right"]8-Feb-15[/TD]
[/TABLE]
Any idea?