Returns the cell of the row for the indicated column.

1 excel.Row.createCell

<excel.Row.createCell col='col'>
    <row /> +
</excel.Row.createCell>
Example
Copy
<xsql-script>
	<body>
		<set name='wb'>
		    <excel.Workbook />
		</set>
		
		<set name="sheet_1">
		    <excel.Workbook.createSheet name="Hoja 1">
		        <wb/>
		    </excel.Workbook.createSheet>
		</set>
		
		<set name="cell_r1">
		    <excel.Sheet.createRow row="15">
		        <sheet_1/>
		    </excel.Sheet.createRow>
		</set>
		
		<set name="cell_r1c1">
		    <excel.Row.createCell col="1">
		        <cell_r1/>
		    </excel.Row.createCell>
		</set>
		
		<excel.Workbook.write>
		    <wb/>
		    <file name="test.xls" type="absolute"/>
		</excel.Workbook.write>
	</body>
</xsql-script>