Whatever message this page gives is out now! Go check it out!
SpreadsheetGetCellValue(spreadsheetObj, row, column) |
Parameter | Description |
spreadsheetObj | The Excel spreadsheet object from which to get the value. |
row | The row number of the cell from which to get the formula. |
column | The column number of the cell from which to get the formula. |
<cfscript>
//Create a new Excel spreadsheet object.
theSheet=SpreadsheetNew();
//Set the value of the cell at row 3 column 5.
SpreadsheetSetCellValue(theSheet,365,3,5);
//Get the value from the Excel spreadsheet object.
theValue=SpreadsheetGetCellValue(theSheet,3,5);
WriteOutput("The value of column 5 row 3 is: " & theValue);
</cfscript>