-
-
Notifications
You must be signed in to change notification settings - Fork 36
getCellValue
Julian Halliwell edited this page Sep 20, 2021
·
4 revisions
Gets the value of a cell in the active sheet.
getCellValue( workbook, row, column )
-
workbook
spreadsheet object -
row
numeric -
column
numeric
Chainable? Yes but ends the chain.
data = QueryNew( "First,Last","VarChar,VarChar",[ [ "Susi","Sorglos" ],[ "Frumpo","McNugget" ] ] );
spreadsheet = New spreadsheet();
workbook = spreadsheet.workbookFromQuery( data );
spreadsheet.getCellValue( workbook,2,2 );