/
excelAddRow
excelAddRow
Description
Adds a new row to a sheet in a workbook.
Parameters
Return Type
Boolean
Returns true if the operation was successful, false otherwise.
Example
Add a new row and data to an existing workbook.
use "excel";
int fid = openWorkbook("snakes.xlsx");
setCurrentSheet(fid, "Venemous Snakes");
addRow(fid, 1);
setCell(fid, "Lawyer Snake", 1, 0);
setCell(fid, "Cheatum Maximus", 1, 1);
closeWorkbook(fid);
Click here to download the workbook used in this example.
See also
Related content
Excel macro - Cloud
Excel macro - Cloud
More like this
Release notes 7.3.3
Release notes 7.3.3
More like this
Release notes 7.3.6
Release notes 7.3.6
More like this
User guide - 7.x
User guide - 7.x
More like this
Excel macro - 7.x
Excel macro - 7.x
More like this
Excel macro - 6.x
Excel macro - 6.x
More like this