R=11 'the first row to paste the data
For each cell in _
Range(Range("C2"),Range("C2").End(xlDown))
'cells C2 to last cell down
i=0
Do
Cells(R,1).value=cell.offset(0, -2).value 'Test Data
Cells(R,2).value=cell.offset(0, -1).value 'Time Data
Cells(R,2).value=cell.offset(0, i).value 'Data
R=R+1 'add 1 row down if have more data
i=i+1 'i refer Data value to the right
Loop until cell.offset(0,i).value=""
Next