Hello,
I have a below table:
<tbody>
Month x
MONTH x+1
Volume month x
Volume month x+1
PRODUCT 1
7
8
100
50
</tbody>
I would like to convert it to the following:
<tbody>
Month
Volume
PRODUCT 1
7
100
PRODUCT 1
8
50
</tbody>
Is there any easy way to do this?
Thanks a lot