Create a new row in the wished sheet.

1 excel.Sheet.createRow

<excel.Sheet.createRow row='row'>
    <sh /> +
</excel.Sheet.createRow>
Example
Copy
<xsql-script>
	<body>
		<set name='wb'>
		    <excel.Workbook />
		</set>
		<set name='sheet_1'>
		    <excel.Workbook.createSheet name='sheet1'>
		        <wb />
		    </excel.Workbook.createSheet>
		</set>
		<set name='cell_r1'>
		    <excel.Sheet.createRow row='15'>
		        <sheet_1/>
		    </excel.Sheet.createRow>
		</set>
	</body>
</xsql-script>