Create a schema for the rank of given rows.

1 excel.Sheet.groupRow

<excel.Sheet.groupRow
    from='from'
    to='to'
>
    <sh /> +
</excel.Sheet.groupRow>
Example
Copy
<xsql-script>
	<body>
		<set name='wb'>
		  <excel.Workbook />
		</set>
		
		<set name="sheet_1">
		  <excel.Workbook.createSheet name="Sheet 1">
		      <wb/>
		  </excel.Workbook.createSheet>
		</set>
		
		<excel.Sheet.groupRow from="1" to="5">
			<sheet_1/>
		</excel.Sheet.groupRow>
		
		<excel.Workbook.write>
		  <wb/>
		  <file name="test.xls" type="absolute"/>
		</excel.Workbook.write>
	</body>
</xsql-script>