Good Morning,
I am trying to copy data that looks like the following
[TABLE="align: left"]
<tbody>[TR]
[TD]Is there a problem
[/TD]
[TD]Name
[/TD]
[TD]Account number
[/TD]
[TD]Comments
[/TD]
[TD]Overall rating
[/TD]
[TD]Date
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Jim
[/TD]
[TD]1234
[/TD]
[TD]Need to do this
[/TD]
[TD]7
[/TD]
[TD]20140312
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Jill
[/TD]
[TD]5678
[/TD]
[TD]This needs to be fixed
[/TD]
[TD]6
[/TD]
[TD]20140414
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Bob
[/TD]
[TD]4321
[/TD]
[TD]Excellent works great
[/TD]
[TD]1
[/TD]
[TD]20140313
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Joe
[/TD]
[TD]3214
[/TD]
[TD]Excellent works great
[/TD]
[TD]2
[/TD]
[TD]20140215
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Mike
[/TD]
[TD]4123
[/TD]
[TD]Need to do this
[/TD]
[TD]7
[/TD]
[TD]20140617
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Dan
[/TD]
[TD]4213
[/TD]
[TD]This needs to be fixed
[/TD]
[TD]6
[/TD]
[TD]20140712
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Janet
[/TD]
[TD]1111
[/TD]
[TD]Excellent works great
[/TD]
[TD]1
[/TD]
[TD]20140818
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Jumior
[/TD]
[TD]1112
[/TD]
[TD]Excellent works great
[/TD]
[TD]2
[/TD]
[TD]20140919
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I want to make the data look like below. I need the macro to select only four of the columns for one sheet and three for the other,
and transpose the data leaving a space in between going vertical. To select which sheet it is going to
I want to select from the overall rating column, it will need to have a 7 or 6 to go to one page and a 1 or 2
to go to the other page. I have used the code from the following page:http://www.mrexcel.com/forum/excel-...-rows-paste-transpose-into-single-column.html
Sub SubbyWays()
'eaxample at http://www.mrexcel.com/forum/excel-...-rows-paste-transpose-into-single-column.html
Dim sData As Variant
Dim f_Data As Variant
Dim iC As Integer
Dim iR As Long
Dim rCoun As Long
Dim UCol As Integer
rCoun = 1
'Insert If statement to find top 2
sData = Range("A1").CurrentRegion.Value 'retrieves all values in the current row and stores in sdata
UCol = UBound(sData, 2) 'Ucol is set to equal Ubound(array name,Dimension) gives the upper boundry of the 2nd dimenson which would be how many colums are there.
ReDim f_Data(1 To UBound(sData, 1) * UCol, 1 To 1)
For iR = LBound(sData, 1) To UBound(sData, 1)
For iC = LBound(sData, 2) To UBound(sData, 2)
f_Data(rCoun, 1) = sData(Int((iC - 1) / UCol) + iR, 1 + ((iC - 1) Mod UCol))
rCoun = rCoun + 1
Next
Next iR
Range("H1").Resize(UBound(f_Data), 1) = f_Data
End Sub
How do I insert a loop to make sure for "SheetA" I get only the rows that have a 7 or 6
in the overall rating column? SheetB will have data that has a 1 or 2. Both sheets will have data transposed like in the example.
[TABLE="class: MsoTableGrid, width: 821, align: left"]
<tbody>[TR]
[TD="width: 248, bgcolor: transparent"]SheetA<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]SheetB<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Jim <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Jumior<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]1234<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]1112<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Need to do this <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]7<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Janet<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]1111<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Jill<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]5678<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]This needs to be fixed <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]6<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Joe<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]3214<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Bob<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Bob<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]4321<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]4321<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]1<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
</tbody>[/TABLE]
I am trying to copy data that looks like the following
[TABLE="align: left"]
<tbody>[TR]
[TD]Is there a problem
[/TD]
[TD]Name
[/TD]
[TD]Account number
[/TD]
[TD]Comments
[/TD]
[TD]Overall rating
[/TD]
[TD]Date
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Jim
[/TD]
[TD]1234
[/TD]
[TD]Need to do this
[/TD]
[TD]7
[/TD]
[TD]20140312
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Jill
[/TD]
[TD]5678
[/TD]
[TD]This needs to be fixed
[/TD]
[TD]6
[/TD]
[TD]20140414
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Bob
[/TD]
[TD]4321
[/TD]
[TD]Excellent works great
[/TD]
[TD]1
[/TD]
[TD]20140313
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Joe
[/TD]
[TD]3214
[/TD]
[TD]Excellent works great
[/TD]
[TD]2
[/TD]
[TD]20140215
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Mike
[/TD]
[TD]4123
[/TD]
[TD]Need to do this
[/TD]
[TD]7
[/TD]
[TD]20140617
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Dan
[/TD]
[TD]4213
[/TD]
[TD]This needs to be fixed
[/TD]
[TD]6
[/TD]
[TD]20140712
[/TD]
[/TR]
[TR]
[TD]yes
[/TD]
[TD]Janet
[/TD]
[TD]1111
[/TD]
[TD]Excellent works great
[/TD]
[TD]1
[/TD]
[TD]20140818
[/TD]
[/TR]
[TR]
[TD]no
[/TD]
[TD]Jumior
[/TD]
[TD]1112
[/TD]
[TD]Excellent works great
[/TD]
[TD]2
[/TD]
[TD]20140919
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I want to make the data look like below. I need the macro to select only four of the columns for one sheet and three for the other,
and transpose the data leaving a space in between going vertical. To select which sheet it is going to
I want to select from the overall rating column, it will need to have a 7 or 6 to go to one page and a 1 or 2
to go to the other page. I have used the code from the following page:http://www.mrexcel.com/forum/excel-...-rows-paste-transpose-into-single-column.html
Sub SubbyWays()
'eaxample at http://www.mrexcel.com/forum/excel-...-rows-paste-transpose-into-single-column.html
Dim sData As Variant
Dim f_Data As Variant
Dim iC As Integer
Dim iR As Long
Dim rCoun As Long
Dim UCol As Integer
rCoun = 1
'Insert If statement to find top 2
sData = Range("A1").CurrentRegion.Value 'retrieves all values in the current row and stores in sdata
UCol = UBound(sData, 2) 'Ucol is set to equal Ubound(array name,Dimension) gives the upper boundry of the 2nd dimenson which would be how many colums are there.
ReDim f_Data(1 To UBound(sData, 1) * UCol, 1 To 1)
For iR = LBound(sData, 1) To UBound(sData, 1)
For iC = LBound(sData, 2) To UBound(sData, 2)
f_Data(rCoun, 1) = sData(Int((iC - 1) / UCol) + iR, 1 + ((iC - 1) Mod UCol))
rCoun = rCoun + 1
Next
Next iR
Range("H1").Resize(UBound(f_Data), 1) = f_Data
End Sub
How do I insert a loop to make sure for "SheetA" I get only the rows that have a 7 or 6
in the overall rating column? SheetB will have data that has a 1 or 2. Both sheets will have data transposed like in the example.
[TABLE="class: MsoTableGrid, width: 821, align: left"]
<tbody>[TR]
[TD="width: 248, bgcolor: transparent"]SheetA<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]SheetB<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Jim <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Jumior<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]1234<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]1112<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Need to do this <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]7<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Janet<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]1111<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Jill<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]5678<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]This needs to be fixed <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]6<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Joe<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]3214<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"][/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"] <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Other purpose<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Bob<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Name <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Bob<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]4321<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Account number <o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]4321<o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"]Comments<o></o>
[/TD]
[TD="width: 240, bgcolor: transparent"]Excellent works great <o></o>
[/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Overall rating <o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"]1<o></o>
[/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="width: 248, bgcolor: transparent"]Other Purpose<o></o>
[/TD]
[TD="width: 162, bgcolor: transparent"][/TD]
[TD="width: 172, bgcolor: transparent"][/TD]
[TD="width: 273, bgcolor: transparent"][/TD]
[TD="width: 240, bgcolor: transparent"][/TD]
[/TR]
</tbody>[/TABLE]