have an excel sheet[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]id[/TD]
[TD]number[/TD]
[TD]description[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]777[/TD]
[TD]first row[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]6382[/TD]
[TD]second row[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]second row more detail[/TD]
[/TR]
[TR]
[TD]124[/TD]
[TD]72920[/TD]
[TD]third row[/TD]
[/TR]
[TR]
[TD]120[/TD]
[TD]38392[/TD]
[TD]forth row
[/TD]
[/TR]
</tbody>[/TABLE]
And I want to be able to sort the sheet but second row and second row more detail need to stay together so if I sorted by id I would get
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]id[/TD]
[TD]number[/TD]
[TD]description[/TD]
[/TR]
[TR]
[TD]120[/TD]
[TD]38392[/TD]
[TD]forth row[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]6382[/TD]
[TD]second row[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]second row more detail[/TD]
[/TR]
</tbody>[/TABLE]
etc.. (the end of my table disappeared but it keep sorting on id
Is there a way to link rows together so when you sort they always stick together?
<tbody>[TR]
[TD]id[/TD]
[TD]number[/TD]
[TD]description[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]777[/TD]
[TD]first row[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]6382[/TD]
[TD]second row[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]second row more detail[/TD]
[/TR]
[TR]
[TD]124[/TD]
[TD]72920[/TD]
[TD]third row[/TD]
[/TR]
[TR]
[TD]120[/TD]
[TD]38392[/TD]
[TD]forth row
[/TD]
[/TR]
</tbody>[/TABLE]
And I want to be able to sort the sheet but second row and second row more detail need to stay together so if I sorted by id I would get
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]id[/TD]
[TD]number[/TD]
[TD]description[/TD]
[/TR]
[TR]
[TD]120[/TD]
[TD]38392[/TD]
[TD]forth row[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]6382[/TD]
[TD]second row[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]second row more detail[/TD]
[/TR]
</tbody>[/TABLE]
etc.. (the end of my table disappeared but it keep sorting on id
Is there a way to link rows together so when you sort they always stick together?
Last edited: